Skip to content

Commit

Permalink
fix: variable names (#4311)
Browse files Browse the repository at this point in the history
  • Loading branch information
danil-pavlov authored Jun 26, 2024
1 parent a411e9f commit b179204
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/topics/multiplatform/multiplatform-build-native-binaries.md
Original file line number Diff line number Diff line change
Expand Up @@ -345,8 +345,8 @@ import org.jetbrains.kotlin.gradle.tasks.FatFrameworkTask

kotlin {
// Create and configure the targets.
val ios32 = watchosArm32("watchos32")
val ios64 = watchosArm64("watchos64")
val watchos32 = watchosArm32("watchos32")
val watchos64 = watchosArm64("watchos64")
configure(listOf(watchos32, watchos64)) {
binaries.framework {
baseName = "my_framework"
Expand All @@ -360,8 +360,8 @@ kotlin {
destinationDir = buildDir.resolve("fat-framework/debug")
// Specify the frameworks to be merged.
from(
ios32.binaries.getFramework("DEBUG"),
ios64.binaries.getFramework("DEBUG")
watchos32.binaries.getFramework("DEBUG"),
watchos64.binaries.getFramework("DEBUG")
)
}
}
Expand Down Expand Up @@ -392,8 +392,8 @@ kotlin {
destinationDir = file("$buildDir/fat-framework/debug")
// Specify the frameworks to be merged.
from(
targets.ios32.binaries.getFramework("DEBUG"),
targets.ios64.binaries.getFramework("DEBUG")
targets.watchos32.binaries.getFramework("DEBUG"),
targets.watchos64.binaries.getFramework("DEBUG")
)
}
}
Expand Down

0 comments on commit b179204

Please sign in to comment.