Disable .so libraries compression in the apk #10076

Open
zeac wants to merge 1 commit from zeac/feature/1 into master
zeac commented 2025-01-16 14:31:00 +00:00 (Migrated from github.com)

This change affects only APK distributions. In App Bundle distribution format which is used by Google Play Store native libraries are not compressed already.

This change affects only APK distributions. In App Bundle distribution format which is used by Google Play Store native libraries are not compressed already.
biodranik (Migrated from github.com) reviewed 2025-01-16 17:57:59 +00:00
@ -363,0 +363,4 @@
packagingOptions {
jniLibs {
useLegacyPackaging = false
biodranik (Migrated from github.com) commented 2025-01-16 17:57:59 +00:00

Whether to use the legacy convention of compressing all .so files in the APK. If null, .so files will be uncompressed and page-aligned when minSdk >= 23.

  1. What happens for minSdk 21?
  2. What are the pros and cons? Will apk size increase significantly?
> Whether to use the legacy convention of compressing all .so files in the APK. If null, .so files will be uncompressed and page-aligned when minSdk >= 23. 1. What happens for minSdk 21? 2. What are the pros and cons? Will apk size increase significantly?
zeac (Migrated from github.com) reviewed 2025-01-16 19:11:34 +00:00
@ -363,0 +363,4 @@
packagingOptions {
jniLibs {
useLegacyPackaging = false
zeac (Migrated from github.com) commented 2025-01-16 19:11:34 +00:00
  1. On minSdk 21 .so files will continue to be extracted from the APK, so they will exist in 2 copies on the device instead of one and one compressed. Android 5 users are victims of this change but how many of them are there? Many apps in Play Store have minSdk 23 these days.

  2. Raw APK size increase increased significantly. webDebug APK with all ABIs is about two times larger (83Mb vs 154Mb). But:
    a) gzipped size of the APK slightly decreases(66Mb vs 60Mb), because compression works better if applied at the end. So less data is consumed if HTTP gzip is enabled.
    b) storage occupied by the app decreases because it no longer necessary to extract .so files. So only one copy of each library is on the disk, instead one and a half.

So it could negatively affect distribution channels which do not support HTTP gzip and use single APK for all ABIs. And it looks like F-Droid is one of them which is sad.

https://developer.android.com/build/releases/past-releases/agp-3-6-0-release-notes#extractNativeLibs
https://developer.android.com/build/releases/past-releases/agp-4-2-0-release-notes#compress-native-libs-dsl

1. On minSdk 21 .so files will continue to be extracted from the APK, so they will exist in 2 copies on the device instead of one and one compressed. Android 5 users are victims of this change but how many of them are there? Many apps in Play Store have minSdk 23 these days. 2. Raw APK size increase increased significantly. webDebug APK with all ABIs is about two times larger (83Mb vs 154Mb). But: a) gzipped size of the APK slightly decreases(66Mb vs 60Mb), because compression works better if applied at the end. So less data is consumed if HTTP gzip is enabled. b) storage occupied by the app decreases because it no longer necessary to extract .so files. So only one copy of each library is on the disk, instead one and a half. So it could negatively affect distribution channels which do not support HTTP gzip and use single APK for all ABIs. And it looks like F-Droid is one of them which is sad. https://developer.android.com/build/releases/past-releases/agp-3-6-0-release-notes#extractNativeLibs https://developer.android.com/build/releases/past-releases/agp-4-2-0-release-notes#compress-native-libs-dsl
pastk reviewed 2025-01-22 07:56:23 +00:00
@ -363,0 +363,4 @@
packagingOptions {
jniLibs {
useLegacyPackaging = false

And also all our apks distributed via Github directly or via Obtainium? And likely the ones distributed via Accrescent.
What about Huawei store?

Is it possible to apply this change to Google build flavor only?

And also all our apks distributed via Github directly or via Obtainium? And likely the ones distributed via Accrescent. What about Huawei store? Is it possible to apply this change to Google build flavor only?
zeac (Migrated from github.com) reviewed 2025-01-23 08:25:21 +00:00
@ -363,0 +363,4 @@
packagingOptions {
jniLibs {
useLegacyPackaging = false
zeac (Migrated from github.com) commented 2025-01-23 08:25:20 +00:00

This change doesn't affect Google Play, it uses different packaging mechanism – app bundles, in which compression is already disabled.

Huawei Store also supports App bundles, but I don't know how Organic Maps are uploaded there.

This change doesn't affect Google Play, it uses different packaging mechanism – app bundles, in which compression is already disabled. Huawei Store also supports [App bundles](https://developer.huawei.com/consumer/en/agconnect/app-bundle/), but I don't know how Organic Maps are uploaded there.
pastk reviewed 2025-01-24 06:19:20 +00:00
@ -363,0 +363,4 @@
packagingOptions {
jniLibs {
useLegacyPackaging = false

So what current OM distribution channels that would benefit from this change for sure? (i.e. have single apks and http gzip enabled)

So what current OM distribution channels that would benefit from this change for sure? (i.e. have single apks and http gzip enabled)
rtsisyk reviewed 2025-01-26 09:43:35 +00:00
@ -363,0 +363,4 @@
packagingOptions {
jniLibs {
useLegacyPackaging = false

On minSdk 21 .so files will continue to be extracted from the APK, so they will exist in 2 copies on the device instead of one and one compressed. Android 5 users are victims of this change but how many of them are there?

SDK < 23 isn't a big deal, but we'll likely need to drop support for it sooner or later.

Raw APK size increase increased significantly. webDebug APK with all ABIs is about two times larger (83Mb vs 154Mb). But:
a) gzipped size of the APK slightly decreases(66Mb vs 60Mb), because compression works better if applied at the end. So less data is consumed if HTTP gzip is enabled.
b) storage occupied by the app decreases because it no longer necessary to extract .so files. So only one copy of each library is on the disk, instead one and a half.

This is huge!

This change doesn't affect Google Play, it uses different packaging mechanism – app bundles, in which compression is already disabled.
Huawei Store also supports App bundles, but I don't know how Organic Maps are uploaded there.

Both Google Play and Huawei AppGallery are distributed via AAB bundles.

So it could negatively affect distribution channels which do not support HTTP gzip and use single APK for all ABIs.

The F-Droid team initially requested that we reduce the APK size to 50MB (without the World.mwm file).

> On minSdk 21 .so files will continue to be extracted from the APK, so they will exist in 2 copies on the device instead of one and one compressed. Android 5 users are victims of this change but how many of them are there? SDK < 23 isn't a big deal, but we'll likely need to drop support for it sooner or later. > Raw APK size increase increased significantly. webDebug APK with all ABIs is about two times larger (83Mb vs 154Mb). But: a) gzipped size of the APK slightly decreases(66Mb vs 60Mb), because compression works better if applied at the end. So less data is consumed if HTTP gzip is enabled. b) storage occupied by the app decreases because it no longer necessary to extract .so files. So only one copy of each library is on the disk, instead one and a half. This is huge! > This change doesn't affect Google Play, it uses different packaging mechanism – app bundles, in which compression is already disabled. > Huawei Store also supports [App bundles](https://developer.huawei.com/consumer/en/agconnect/app-bundle/), but I don't know how Organic Maps are uploaded there. Both Google Play and Huawei AppGallery are distributed via AAB bundles. > So it could negatively affect distribution channels which do not support HTTP gzip and use single APK for all ABIs. The F-Droid team initially requested that we reduce the APK size to 50MB (without the World.mwm file).
rtsisyk reviewed 2025-01-26 09:43:53 +00:00
@ -363,0 +363,4 @@
packagingOptions {
jniLibs {
useLegacyPackaging = false

What problem does this PR fix? Is it organicmaps/organicmaps#539 or something else?

What problem does this PR fix? Is it https://git.omaps.dev/organicmaps/organicmaps/issues/539 or something else?
This repo is archived. You cannot comment on pull requests.
No reviewers
No labels
Accessibility
Accessibility
Address
Address
Android
Android
Android Auto
Android Auto
Android Automotive (AAOS)
Android Automotive (AAOS)
API
API
AppGallery
AppGallery
AppStore
AppStore
Battery and Performance
Battery and Performance
Blocker
Blocker
Bookmarks and Tracks
Bookmarks and Tracks
Borders
Borders
Bug
Bug
Build
Build
CarPlay
CarPlay
Classificator
Classificator
Community
Community
Core
Core
CrashReports
CrashReports
Cycling
Cycling
Desktop
Desktop
DevEx
DevEx
DevOps
DevOps
dev_sandbox
dev_sandbox
Directions
Directions
Documentation
Documentation
Downloader
Downloader
Drape
Drape
Driving
Driving
Duplicate
Duplicate
Editor
Editor
Elevation
Elevation
Enhancement
Enhancement
Epic
Epic
External Map Datasets
External Map Datasets
F-Droid
F-Droid
Fonts
Fonts
Frequently User Reported
Frequently User Reported
Fund
Fund
Generator
Generator
Good first issue
Good first issue
Google Play
Google Play
GPS
GPS
GSoC
GSoC
iCloud
iCloud
Icons
Icons
iOS
iOS
Legal
Legal
Linux Desktop
Linux Desktop
Linux packaging
Linux packaging
Linux Phone
Linux Phone
Mac OS
Mac OS
Map Data
Map Data
Metro
Metro
Navigation
Navigation
Need Feedback
Need Feedback
Night Mode
Night Mode
NLnet 2024-06-281
NLnet 2024-06-281
No Feature Parity
No Feature Parity
Opening Hours
Opening Hours
Outdoors
Outdoors
POI Info
POI Info
Privacy
Privacy
Public Transport
Public Transport
Raw Idea
Raw Idea
Refactoring
Refactoring
Regional
Regional
Regression
Regression
Releases
Releases
RoboTest
RoboTest
Route Planning
Route Planning
Routing
Routing
Ruler
Ruler
Search
Search
Security
Security
Styles
Styles
Tests
Tests
Track Recording
Track Recording
Translations
Translations
TTS
TTS
UI
UI
UX
UX
Walk Navigation
Walk Navigation
Watches
Watches
Web
Web
Wikipedia
Wikipedia
Windows
Windows
Won't fix
Won't fix
World Map
World Map
No milestone
No project
No assignees
3 participants
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: organicmaps/organicmaps-tmp#10076
No description provided.