bundletool not compressing libs when trying to create a universal apk to deliver.
- Dominant language
- Java
- Stars
- 4k
- Forks
- 428
- PR merge metrics
- No merged PRs in 30d
Description
Basically the universal apk is the normal apk with x64 libs uncompressed so it delivers everything and works on every device. Im trying to make google deliver this Universal apk instead of Master apk they deliver. First to disable all abi splits and to make uncompressed libs i make this: Building AAB using aapt2 and bundletool in Bundletool i use this config.json
`{
"optimizations": {
"splitsConfig": {
"splitDimension": [
{
"value": "ABI",
"negate": true
},
{
"value": "SCREEN_DENSITY",
"negate": true
},
{
"value": "LANGUAGE",
"negate": true
}
]
}
},
"compression": {
"uncompressedGlob": ["lib/arm64-v8a/**"]
}
}`
Google play still deliver compressed *.so files, need to be uncompressed.
Contributor guide
Assessment
This issue has not been assessed yet.