forked from organicmaps/organicmaps
Disable .so libraries compression in the apk
This change affects only APK distributions. In App Bundle distribution format which is used by Google Play Store native libraries are not compressed already. Signed-off-by: Alexey Krasilnikov <alexey@krasilnikov.me>
This commit is contained in:
parent
a1c6d532b5
commit
dd8d248bd6
1 changed files with 6 additions and 0 deletions
|
@ -360,6 +360,12 @@ android {
|
|||
sourceCompatibility JavaVersion.VERSION_17
|
||||
targetCompatibility JavaVersion.VERSION_17
|
||||
}
|
||||
|
||||
packagingOptions {
|
||||
jniLibs {
|
||||
useLegacyPackaging = false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
|
Loading…
Add table
Reference in a new issue