Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Max size of an Android Application

What is the maximum size for an Android Application that can be uploaded for Google Play? Is there some official resource or documentation for this? For example I see some games that are in GBs so is there an upward limit?

like image 559
Ram G Athreya Avatar asked Jan 24 '14 10:01

Ram G Athreya


People also ask

What is the maximum size of an app?

The maximum size limits are: 150MB: Maximum compressed download size of APKs for one device generated from app bundles. The app bundle itself can be many times larger than this size. 100MB: Maximum compressed download size of APK for apps published with APKs (only applicable to apps created before August 2021).

What is the maximum size of an APK?

Each file can be up to 2GB and it can be any format you choose, but we recommend you use a compressed file to conserve bandwidth during the download. Conceptually, each expansion file plays a different role: The main expansion file is the primary expansion file for additional resources required by your app.

What is the average size of an Android app?

Average Android and iOS file size Of all mobile apps published on the app stores, the average Android app file size is 11.5MB. And the average iOS app file size is 34.3MB.

Does size matter in creating an Android app?

Yes, depending on the nature of your app (and the quality of your architecture) it will be a bit more work to optimise your app; but simply using App Bundles can be done by the flip of a switch and requires no adjustments to your code at all.


2 Answers

Android Market raises maximum app size to 4GB, APK files still limited to 50MB

Please study these links, you will get your answer:

Android APK size limitation in Google Play

http://developer.android.com/google/play/expansion-files.html

http://www.engadget.com/2012/03/05/android-market-4gb-app-limit/

Update (28 Sep 2015)

The Google Play team (ANDROID DEVELOPER BLOG) ::(GOOGLE) update the max size limit. They are increasing the APK file size limit to 100MB from 50MB. This means developers can publish APKs up to 100MB in size,Please refer this link for more information on Android Developer Blog

like image 139
Satyaki Mukherjee Avatar answered Sep 28 '22 03:09

Satyaki Mukherjee


Update (As of Sep 28, 2015):

APK files have a maximum file size, based on the Android version that your APK supports: If you can't support all devices with a single APK, you can upload multiple APKs using the same app listing that target different device configurations.

  • 100 MB – APKs that target Android 2.3 and higher (API level 9-10 and 14+)
  • 50 MB – APKs that target Android 2.2 and lower (API level 8 or lower)

Tip: Users must run Play Store version 5.2 or higher to install 100 MB APKs.

Reference to Play Console Help.


Old Answer:

See here for details

Currently, the maximum size for an APK published on Google Play is 50 MB.

You can use up to two (2) APK Expansion Files, each up to 2 GB in size, for each APK.

like image 40
LeoR Avatar answered Sep 28 '22 05:09

LeoR