Reputation: 470
I have developed a One Android application. Its APK size is 8MB. Can anyone tell me how to reduce the APK size when using NDK in my App? TIA
Upvotes: 0
Views: 833
Reputation: 10509
If you're targeting multiple architectures, using App Bundles will automatically split your APKs for you so your app only contains the libraries needed for the given device.
Upvotes: 1
Reputation: 4869
I think configuring multiple apks for screen densities or ABIs might help you.
Documentation here : https://developer.android.com/studio/build/configure-apk-splits
Upvotes: 0