Skip to content

Commit efa3a1f

Browse files
committed
android:extractNativeLibs -> useLegacyPackaging true
1 parent 7f52b30 commit efa3a1f

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

app/build.gradle

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@ android {
2828
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
2929
}
3030

31+
packagingOptions {
32+
jniLibs {
33+
useLegacyPackaging true
34+
}
35+
}
36+
3137
externalNativeBuild {
3238
cmake {
3339
path "CMakeLists.txt"

app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
<application
1313
android:name=".IrisWallet"
1414
android:allowBackup="false"
15-
android:extractNativeLibs="true"
1615
android:dataExtractionRules="@xml/data_extraction_rules"
1716
android:fullBackupContent="@xml/full_backup_content"
1817
android:icon="@mipmap/ic_launcher"
@@ -27,7 +26,7 @@
2726
android:name=".ui.ConnectivityService"
2827
android:enabled="true"
2928
android:exported="false" />
30-
<activity
29+
<activity
3130
android:name=".ui.ScanActivity"
3231
android:exported="false"
3332
android:screenOrientation="portrait"

0 commit comments

Comments
 (0)