Can you please provide per-ABI APKs? The universal one is meanwhile more than twice the per-app size limit at IzzyOnDroid. A pure arm64 build would be well into limits again (at around 20 MB).
An alternative might be to enable legacy compression for the universal APK, though I'm not sure if that would bring the APK size below 30 MB:
android {
packagingOptions {
dex.useLegacyPackaging = true
jniLibs.useLegacyPackaging = true
}
}
Thanks in advance!
Can you please provide per-ABI APKs? The universal one is meanwhile more than twice the per-app size limit at IzzyOnDroid. A pure arm64 build would be well into limits again (at around 20 MB).
An alternative might be to enable legacy compression for the universal APK, though I'm not sure if that would bring the APK size below 30 MB:
android { packagingOptions { dex.useLegacyPackaging = true jniLibs.useLegacyPackaging = true } }Thanks in advance!