Reputation: 59
am developing a game app.,it contains more number of images,music files etc., it exceeded more than 50MB.but as per playstore , Market will allow on 50MB of apk size,plz provide me any solution to upload apk with more then 50MB of size,
Thank in advance....
Upvotes: 4
Views: 9240
Reputation: 20080
I know it's a late answer, but it may help others who encounter a similar issue:
As of recently (Sept. 2015), you are able to upload APKs up to 100 MB if you are targeting Android 2.3 and above - you can read more about it on this help page. This limit used to be 50 MB. There is also the Android developers blogspot article explaining the changes here.
Alternatively, or if your app exceeds the 100 MB APK limit, you can use expansion files. These are additional files that are downloaded after your app has installed and can be up to 4 GB (to be specific, you can have two expansion files of up to 2 GB each). You can learn more about expansion files on this page on the Android Developers website.
However, note that there are some limitations to using expansion files, apart from the 2 GB limit per file such as the fact that the user must have downloaded your app through Google Play. More details on these can also be found on the Android Developers page linked above.
Upvotes: 0
Reputation: 771
Play Store supports extension files for your APK's, (in the form of 2 obb files which can be up to 2GB each) you can download them in your main app See here: APK Extension files
Upvotes: 0
Reputation: 4433
to decrease the apk size you can do following things Like
1) Don't keep the any unnecessary file in the build ,
2) If images are of High definition decrease their density
or use smaller images where you could use
3 ) Decrease the size of sound files by decreasing its bit rate
4) or what you can do is keep the resources to a server and download them when are about to used.
and see this link also
http://developer.sonymobile.com/wp/2012/01/31/tips-for-reducing-apk-file-size/
Upvotes: 2
Reputation: 3771
Try apk expansion files: http://developer.android.com/guide/google/play/expansion-files.html
Upvotes: 4