Skip to content

Commit 80f66bb

Browse files
[Bitcoin]: Add linker options (#3687)
1 parent 7523c98 commit 80f66bb

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

samples/kmp/shared/build.gradle.kts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,23 @@ kotlin {
2929
podfile = project.file("../iosApp/Podfile")
3030
framework {
3131
baseName = "shared"
32+
33+
listOf(
34+
iosX64(),
35+
iosArm64(),
36+
iosSimulatorArm64()
37+
).forEach {
38+
it.binaries.all {
39+
linkerOpts += "-ld64"
40+
}
41+
}
3242
}
3343
}
3444

3545
sourceSets {
3646
val commonMain by getting {
3747
dependencies {
38-
implementation("com.trustwallet:wallet-core-kotlin:4.0.22")
48+
implementation("com.trustwallet:wallet-core-kotlin:4.0.24")
3949
}
4050
}
4151
val commonTest by getting {

0 commit comments

Comments
 (0)