We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7bf3ef9 commit 6d08d9dCopy full SHA for 6d08d9d
2 files changed
apps/AndroidApp/app/build.gradle.kts
@@ -58,14 +58,6 @@ android {
58
buildFeatures {
59
compose = true
60
}
61
-
62
- // TODO: investigate why BGP does not handle it
63
- packagingOptions {
64
- pickFirst("lib/arm64-v8a/libc++_shared.so")
65
- pickFirst("lib/armeabi-v7a/libc++_shared.so")
66
- pickFirst("lib/x86/libc++_shared.so")
67
- pickFirst("lib/x86_64/libc++_shared.so")
68
- }
69
70
71
dependencies {
packages/brownie/android/build.gradle
@@ -55,6 +55,12 @@ android {
55
prefab true
56
57
+ packaging {
+ jniLibs {
+ excludes += ["**/libc++_shared.so"]
+ }
+
buildTypes {
release {
minifyEnabled false
0 commit comments