mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-04-20 19:12:04 +00:00
feat: add useLegacyPackaging to reduce APK size
Enable legacy packaging for native libraries to compress .so files in APK, reducing build size as in pre-Flutter 3.35.1 versions
This commit is contained in:
parent
4608c3972a
commit
5200c2900d
1 changed files with 6 additions and 0 deletions
|
|
@ -58,6 +58,12 @@ android {
|
|||
versionName = flutter.versionName
|
||||
}
|
||||
|
||||
packagingOptions {
|
||||
jniLibs {
|
||||
useLegacyPackaging true
|
||||
}
|
||||
}
|
||||
|
||||
signingConfigs {
|
||||
release {
|
||||
keyAlias keystoreProperties['keyAlias']
|
||||
|
|
|
|||
Loading…
Reference in a new issue