Reputation: 1
Hello buddies I just build my first demo project in unity just for learning purpose and the size of apk file was 21 mb so how can I reduce my apk size? I have seen many games that have size less than 5 mb, how do they build these kind of game? Do they use some different game engines? Thanks 😊
Upvotes: 0
Views: 6125
Reputation: 499
of course you can override image size for android , but i recommend you to build under arm v7 architecture , not x86 + armv7 , there are few mobile phone now that uses x86 architecture , you can reduce you game until 11mb , In build section change architecture . If i answered your question please mark as answered
Upvotes: 1
Reputation: 16277
Assets are the most likely candidates for optimization. This information is available in the Editor Log just after you have performed the build. Go to the Console window (menu: Window < Console), click the small drop-down panel in the top right, and select Open Editor Log.
The Editor Log just after a build:
Suggestions for reducing build size
Refer to this link for more details.
Upvotes: 2