Skip to content

Commit 4a930b1

Browse files
Build: Update ABI codes to reflect supported architectures in bdk-android
1 parent f5e4670 commit 4a930b1

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

app/build.gradle.kts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ android {
4848
name = "app_name",
4949
value = "Padawan Wallet DEBUG",
5050
)
51-
// debuggable(true)
5251
isDebuggable = true
5352
}
5453
getByName("release") {
@@ -64,7 +63,9 @@ android {
6463
abi {
6564
isEnable = true
6665
reset()
67-
include("arm64-v8a", "x86", "armeabi-v7a", "x86_64")
66+
// bdk-android 0.5.2 only has support for arm64-v8a and x86_64
67+
include("arm64-v8a", "x86_64")
68+
// include("arm64-v8a", "x86", "armeabi-v7a", "x86_64")
6869
isUniversalApk = true
6970
}
7071
}
@@ -159,7 +160,8 @@ tasks.withType<Test> {
159160
}
160161
}
161162

162-
val abiCodes = mapOf("armeabi-v7a" to 1, "x86" to 2, "x86_64" to 3, "arm64-v8a" to 4)
163+
val abiCodes = mapOf("x86_64" to 1, "arm64-v8a" to 2)
164+
// val abiCodes = mapOf("armeabi-v7a" to 1, "x86" to 2, "x86_64" to 3, "arm64-v8a" to 4)
163165

164166
androidComponents {
165167
onVariants { variant ->

0 commit comments

Comments
 (0)