Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
Alexey Krasilnikov
dd8d248bd6 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>
2025-01-16 21:30:09 +07:00

View file

@ -360,6 +360,12 @@ android {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
packagingOptions {
jniLibs {
useLegacyPackaging = false
}
}
}
dependencies {