Skip to content

Commit b179204

Browse files
authored
fix: variable names (#4311)
1 parent a411e9f commit b179204

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/topics/multiplatform/multiplatform-build-native-binaries.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -345,8 +345,8 @@ import org.jetbrains.kotlin.gradle.tasks.FatFrameworkTask
345345

346346
kotlin {
347347
// Create and configure the targets.
348-
val ios32 = watchosArm32("watchos32")
349-
val ios64 = watchosArm64("watchos64")
348+
val watchos32 = watchosArm32("watchos32")
349+
val watchos64 = watchosArm64("watchos64")
350350
configure(listOf(watchos32, watchos64)) {
351351
binaries.framework {
352352
baseName = "my_framework"
@@ -360,8 +360,8 @@ kotlin {
360360
destinationDir = buildDir.resolve("fat-framework/debug")
361361
// Specify the frameworks to be merged.
362362
from(
363-
ios32.binaries.getFramework("DEBUG"),
364-
ios64.binaries.getFramework("DEBUG")
363+
watchos32.binaries.getFramework("DEBUG"),
364+
watchos64.binaries.getFramework("DEBUG")
365365
)
366366
}
367367
}
@@ -392,8 +392,8 @@ kotlin {
392392
destinationDir = file("$buildDir/fat-framework/debug")
393393
// Specify the frameworks to be merged.
394394
from(
395-
targets.ios32.binaries.getFramework("DEBUG"),
396-
targets.ios64.binaries.getFramework("DEBUG")
395+
targets.watchos32.binaries.getFramework("DEBUG"),
396+
targets.watchos64.binaries.getFramework("DEBUG")
397397
)
398398
}
399399
}

0 commit comments

Comments
 (0)