Skip to content

Commit 687a0bf

Browse files
committed
Android: don't (re-)strip DSOs
finagolfin/swift-android-sdk#67
1 parent b9cdeb8 commit 687a0bf

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Examples/counter/android/app/build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,12 @@ android {
5555
jniLibs.srcDirs = ["libs"]
5656
}
5757
}
58+
59+
packagingOptions {
60+
doNotStrip "*/arm64-v8a/*.so"
61+
doNotStrip "*/armeabi-v7a/*.so"
62+
doNotStrip "*/x86_64/*.so"
63+
}
5864
}
5965

6066
flutter {

0 commit comments

Comments
 (0)