We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7523c98 commit 80f66bbCopy full SHA for 80f66bb
samples/kmp/shared/build.gradle.kts
@@ -29,13 +29,23 @@ kotlin {
29
podfile = project.file("../iosApp/Podfile")
30
framework {
31
baseName = "shared"
32
+
33
+ listOf(
34
+ iosX64(),
35
+ iosArm64(),
36
+ iosSimulatorArm64()
37
+ ).forEach {
38
+ it.binaries.all {
39
+ linkerOpts += "-ld64"
40
+ }
41
42
}
43
44
45
sourceSets {
46
val commonMain by getting {
47
dependencies {
- implementation("com.trustwallet:wallet-core-kotlin:4.0.22")
48
+ implementation("com.trustwallet:wallet-core-kotlin:4.0.24")
49
50
51
val commonTest by getting {
0 commit comments