APK size too big after build. Lib folder after unzip is over 1.3GB

Hi everyone, I am using Android Studio to build android game, the apk file after build is too big. My resource just 180MB but final apk size is over 440MB. I try extract the apk file, and the lib folder is 1.3GB. I don’t know what is wrong. What am I missing here?
Cocos2d-JS v3.17
Android Studio 3.1
android-ndk-r16b

It’s just fine and natural.
The generated apk contains multiple architectures.
If you actually release your app to Google Play, you should generate and upload an AppBundle instead of an apk.
Don’t upload and release the apk as it is.
AppBundle is a mechanism that generates apks for each architecture on the Google Play cloud and distributes them to each terminal.
As a result, the file size of the apk delivered to each terminal can be reduced.
On the other hand, the size of debug-apk is still large, but it is only for the development side, so you do not need to worry about it at all.

1 Like

Got it, thank you, @bluewind00

This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.