Android我的APK大小更大50 MB

时间:2012-07-18 12:56:30

标签: android

我正在开发一款游戏应用程序,它包含更多的图像,音乐文件等,它超过了50MB。但是根据Playstore,市场将允许50MB的apk大小,PLZ为我提供任何解决方案上传apk超过50MB的大小,

提前感谢....

4 个答案:

答案 0 :(得分:4)

答案 1 :(得分:2)

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.

并看到此链接

http://developer.sonymobile.com/wp/2012/01/31/tips-for-reducing-apk-file-size/

答案 2 :(得分:0)

Play商店支持APK的扩展程序文件(以2个obb文件的形式,每个文件最多可达2GB),您可以在主应用程序中下载它们 见这里:APK Extension files

答案 3 :(得分:0)

我知道这是一个迟到的答案,但它可能会帮助遇到类似问题的其他人:

截至最近(2015年9月),如果您的目标是Android 2.3及更高版本,则可以上传最高100 MB的APK - 您可以阅读更多关于它on this help page。此限制曾经是50 MB。还有Android开发人员blogspot文章解释了更改here

或者,如果您的应用超过100 MB APK限制,则可以使用扩展文件。这些是在安装应用程序后下载的其他文件,最高可达4 GB(具体而言,您可以拥有两个最多2 GB的扩展文件)。您可以在this page on the Android Developers website上了解有关扩展文件的详情。

但请注意,使用扩展文件存在一些限制,但每个文件限制为2 GB,例如用户必须通过Google Play下载您的应用。有关这些的更多详细信息也可以在上面链接的Android开发者页面上找到。

相关问题