[android] Explore how Element splits APKs in F-Droid to reduce the APK size #6198

Open
opened 2023-10-04 07:37:18 +00:00 by rtsisyk · 5 comments
Owner

F-Droid can generate one build per architecture, done for quite some apps like Element for example. Build scripts need to be modified a bit if you want that but it is possible

image
> F-Droid can generate one build per architecture, done for quite some apps like Element for example. Build scripts need to be modified a bit if you want that but it is possible <img width="643" alt="image" src="/uploads/e9fb1b344251e0c6c1e23070b94bde26/329da6a4-c5a8-495c-b9af-f0388f912525">
Member

Related to (or duplicates?) #1741

Related to (or duplicates?) #1741
Member
Element file metadata here -> https://gitlab.com/fdroid/fdroiddata/-/blob/master/metadata/im.vector.app.yml
biodranik commented 2023-10-04 23:13:49 +00:00 (Migrated from github.com)

Note that splitting apk into different ABIs will complicate offline redistribution of the apk in cases of disasters or political protests/internet blockages.

Note that splitting apk into different ABIs will complicate offline redistribution of the apk in cases of disasters or political protests/internet blockages.
Author
Owner

mentioned in issue #1741

mentioned in issue #1741
licaonkter commented 2024-01-15 10:53:33 +00:00 (Migrated from github.com)

Isn't this already enabled in 1e6c69f69e/android/app/build.gradle (L269-L276) but F-Droid picks up the universal APK and could pickup per ABi instead?

One note is that, we need per ABI versionCode, usually done via something like


    android.applicationVariants.configureEach { variant ->
        variant.outputs.each { output ->
            def baseAbiVersionCode = project.ext.abiCodes.get(output.getFilter(com.android.build.OutputFile.ABI))
            if (baseAbiVersionCode != null) {
                output.versionCodeOverride = (100 * project.android.defaultConfig.versionCode) + baseAbiVersionCode
            } else {
                output.versionCodeOverride = 100 * project.android.defaultConfig.versionCode
            }
        }

    }

Hence for universal versionCode 23122004 you end up with 2312200401 for armv7, 2312200402 for arm64, ...etc

Isn't this already enabled in https://github.com/organicmaps/organicmaps/blob/1e6c69f69ee66faa95b4f42de29c98e54e8355cc/android/app/build.gradle#L269-L276 but F-Droid picks up the universal APK and could pickup per ABi instead? One note is that, we need per ABI versionCode, usually done via something like ``` android.applicationVariants.configureEach { variant -> variant.outputs.each { output -> def baseAbiVersionCode = project.ext.abiCodes.get(output.getFilter(com.android.build.OutputFile.ABI)) if (baseAbiVersionCode != null) { output.versionCodeOverride = (100 * project.android.defaultConfig.versionCode) + baseAbiVersionCode } else { output.versionCodeOverride = 100 * project.android.defaultConfig.versionCode } } } ``` Hence for universal versionCode `23122004` you end up with `2312200401` for armv7, `2312200402` for arm64, ...etc
Sign in to join this conversation.
No milestone
No project
No assignees
4 participants
Notifications
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#6198
No description provided.