-
Notifications
You must be signed in to change notification settings - Fork 395
.so files in the armv8-Apks are not compressed #118
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
The bundletool team can correct me if I'm mistaken, but I believe you are seeing the correct expected behavior for In case it helps to think about the value of The reason to have uncompressed native libraries in the APK is that Android 6.0 Marshmallow and higher can read uncompressed native libraries directly from the APK instead of extracting them to the file system. See also the |
That is correct, thanks Brendan. Leaving the native libraries uncompressed provides the following benefits:
|
Hi, @plecesne do you know how to force compress native libraries in apk? |
Describe the bug
I'm creating the
.Apks
files from the.Aab
, for all available architectures.1- armv7-apks is compressed and have normal size ~25 MB
2- armv8-apks is not compressed and have ~75 MB.
Bundletool version(s) affected
Version: [0.10.1]
To Reproduce
Steps to reproduce the behavior.
Generate the
.Aab
file with Xamarin Android and create the.Apks
file for armv8.Expected behavior
the result file should be compressed.
Environment:
OS: [Android 8.0]
The text was updated successfully, but these errors were encountered: