4

ゲームアプリを開発しています。画像や音楽ファイルなどの数が多く、50MBを超えていますが、プレイストアによると、マーケットでは50MBのapkサイズが許可されます。plzはapkをアップロードするためのソリューションを提供します。 50MBのサイズ、

少し早いですがお礼を....

4

4 に答える 4

4

apk 拡張ファイルを試す: http://developer.android.com/guide/google/play/expansion-files.html

于 2012-07-18T12:59:00.717 に答える
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/

于 2012-07-18T13:22:30.293 に答える
0

Play ストアは、APK の拡張ファイルをサポートしています (それぞれ最大 2GB の 2 つの obb ファイルの形式で)。メイン アプリでそれらをダウンロードできます。ここを参照してください: APK 拡張ファイル

于 2012-07-18T12:59:44.673 に答える