File tree Expand file tree Collapse file tree 2 files changed +18
-2
lines changed
test/fixtures/simple-android-runner/app Expand file tree Collapse file tree 2 files changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -57,8 +57,16 @@ android {
57
57
lintOptions {
58
58
disable ' InvalidPackage'
59
59
}
60
+
61
+ packagingOptions {
62
+ pickFirst " lib/armeabi-v7a/libc++_shared.so"
63
+ pickFirst " lib/arm64-v8a/libc++_shared.so"
64
+ pickFirst " lib/x86/libc++_shared.so"
65
+ pickFirst " lib/x86_64/libc++_shared.so"
66
+ }
67
+
60
68
// applicationVariants are e.g. debug, release
61
- applicationVariants. all { variant ->
69
+ applicationVariants. all { variant ->
62
70
variant. outputs. each { output ->
63
71
// For each separate APK per architecture, set a unique version code as described here:
64
72
// http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits
Original file line number Diff line number Diff line change @@ -47,8 +47,16 @@ android {
47
47
lintOptions {
48
48
disable ' InvalidPackage'
49
49
}
50
+
51
+ packagingOptions {
52
+ pickFirst " lib/armeabi-v7a/libc++_shared.so"
53
+ pickFirst " lib/arm64-v8a/libc++_shared.so"
54
+ pickFirst " lib/x86/libc++_shared.so"
55
+ pickFirst " lib/x86_64/libc++_shared.so"
56
+ }
57
+
50
58
// applicationVariants are e.g. debug, release
51
- applicationVariants. all { variant ->
59
+ applicationVariants. all { variant ->
52
60
variant. outputs. each { output ->
53
61
// For each separate APK per architecture, set a unique version code as described here:
54
62
// http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits
You can’t perform that action at this time.
0 commit comments