Reputation: 4328
I am working with unity 4.0 and my 2d game is almost completed, and ready to upload on Google Play Store. But the problem is that the APK size is very high. My total size of all Assets is 10.7 MB and the final APK size is 17.0 MB. So I can't understand how it happens.
Any help will be appreciated.
Upvotes: 1
Views: 3617
Reputation: 595
Check out this article in Unity's documentation.
You can reduce the size of the apk by doing:
Upvotes: 1
Reputation: 12636
The APK does not merely consist of the assets. The Unity player is compiled into the resulting APK and explains the size of the APK being larger than the pure assets alone.
Upvotes: 1