Skip to content

Commit

Permalink
[Bitcoin]: Add linker options (#3687)
Browse files Browse the repository at this point in the history
  • Loading branch information
satoshiotomakan authored Feb 17, 2024
1 parent 7523c98 commit 80f66bb
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion samples/kmp/shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,23 @@ kotlin {
podfile = project.file("../iosApp/Podfile")
framework {
baseName = "shared"

listOf(
iosX64(),
iosArm64(),
iosSimulatorArm64()
).forEach {
it.binaries.all {
linkerOpts += "-ld64"
}
}
}
}

sourceSets {
val commonMain by getting {
dependencies {
implementation("com.trustwallet:wallet-core-kotlin:4.0.22")
implementation("com.trustwallet:wallet-core-kotlin:4.0.24")
}
}
val commonTest by getting {
Expand Down

0 comments on commit 80f66bb

Please sign in to comment.