Skip to content

Commit

Permalink
android:extractNativeLibs -> useLegacyPackaging true
Browse files Browse the repository at this point in the history
  • Loading branch information
nicbus committed Feb 10, 2023
1 parent 7f52b30 commit efa3a1f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 6 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,12 @@ android {
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
}

packagingOptions {
jniLibs {
useLegacyPackaging true
}
}

externalNativeBuild {
cmake {
path "CMakeLists.txt"
Expand Down
3 changes: 1 addition & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
<application
android:name=".IrisWallet"
android:allowBackup="false"
android:extractNativeLibs="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/full_backup_content"
android:icon="@mipmap/ic_launcher"
Expand All @@ -27,7 +26,7 @@
android:name=".ui.ConnectivityService"
android:enabled="true"
android:exported="false" />
<activity
<activity
android:name=".ui.ScanActivity"
android:exported="false"
android:screenOrientation="portrait"
Expand Down

0 comments on commit efa3a1f

Please sign in to comment.