Jatin Mandanka
Jatin Mandanka

Reputation: 470

Large APK size when using NDK , how to reduce android app (APK) size?

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

Answers (2)

Dan Albert
Dan Albert

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

Dhiraj Sharma
Dhiraj Sharma

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

Related Questions