2012-07-18 134 views
4

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

预先感谢....

+0

Play商店允许您上传其他APK。 – eternalmatt 2012-07-18 12:58:48

+0

删除不需要的文件..让它低于50MB – 2012-07-18 12:59:57

+0

我看到很多应用程序,你从谷歌播放下载它,然后它提供了一个链接,下载媒体数据 – 2012-07-18 13:06:20

回答

0

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

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/

0

我知道这是一个迟到的回答,但它可以帮助别人谁遇到类似的问题:

作为最近的(9月)。 2015),如果您的目标是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开发者页面上找到。