Fix app packaging warning

PackagingOptions.jniLibs.useLegacyPackaging should be set to true because android:extractNativeLibs is set to "true" in AndroidManifest.xml.

https://monitor.f-droid.org/builds/log/com.termux/117
This commit is contained in:
agnostic-apollo 2021-07-16 14:42:15 +05:00
parent f837ddef23
commit f10de462d2
1 changed files with 7 additions and 0 deletions

View File

@ -95,6 +95,13 @@ android {
includeAndroidResources = true
}
}
packagingOptions {
jniLibs {
useLegacyPackaging true
}
}
}
dependencies {