cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

APK to large for App Store and software distribution (Custom Client 24.7.1)

robert_hunger
Participant
0 Likes
464

Hi APK- Expertes 

We have created an MDK custom client in version 24.7 (Android) but have the problem of distributing it to the devices. The size of the APK is about 240 MB. Our distribution software and App Store allow a max. size of 100 MB or Bundle of 150 MB. Is there a practical way to make the app smaller or remove unnecessary libraries?

thx. Robert

Accepted Solutions (0)

Answers (1)

Answers (1)

bill_froelich
Product and Topic Expert
Product and Topic Expert

 

The following links might help

https://developer.android.com/topic/performance/reduce-apk-size

https://developer.android.com/ndk/guides/abis

 In addition to the information in the links you can perform the following steps to reduce the size:

  1. Edit the AndroidManifest.xml file and set the parameter android:extractNativeLibs to true
  2. Remove MDK extensions you don't use
  3. Edit the app.gradle file to remove architectures from abi filters (for example x86 and x86_64). Alternatively, build 1 apk per architecture

This information was taken from a similar question