My App size is 308.5 MB on disk , the IPA size also almost same , As of the Apple store submission rules , Is this size make any issue?
-
what have you used that makes it 308 MB? I think there is limit... – Fahim Parkar Feb 23 '17 at 05:31
-
there is 2GB limitation. if files is more than 100 MB you will get warning that requires WIFI to download it. http://stackoverflow.com/questions/19646205/maximum-size-for-ios-app this link is similar to your question. – sschunara Feb 23 '17 at 05:34
-
[here is your answer - 4GB](http://stackoverflow.com/a/4753253/1066828) – Fahim Parkar Feb 23 '17 at 05:34
1 Answers
Found the answer here :
4GB's is the maximum size your iOS app can be.
As of January 26, 2017
App Size for iOS (& tvOS) only
Your app’s total uncompressed size must be less than 4GB. Each Mach-O executable file (for example, app_name.app/app_name) must not exceed these limits:
For apps whose MinimumOSVersion is less than 7.0: maximum of 80 MB for the total of all __TEXT sections in the binary. For apps whose MinimumOSVersion is 7.x through 8.x: maximum of 60 MB per slice for the __TEXT section of each architecture slice in the binary. For apps whose MinimumOSVersion is 9.0 or greater: maximum of 500 MB for the total of all __TEXT sections in the binary. However, consider download times when determining your app’s size. Minimize the file’s size as much as possible, keeping in mind that there is a 100 MB limit for over-the-air downloads.
This information can be found at iTunes Connect Developer Guide: Submitting the App to App Review.

- 1
- 1

- 2,268
- 2
- 20
- 36
-
__TEXT sections in the binary means? Need to make Target device 9.0 and above ! – Abbut John Feb 23 '17 at 05:37
-
i couldn't find what __TEXT sections mean but for the best hope make your minimum OS 9.0 to be safe – Mostafa Sultan Feb 23 '17 at 05:44
-
from my search i think it's memory usage https://developer.apple.com/library/content/documentation/Performance/Conceptual/ManagingMemory/Articles/VMPages.html – Mostafa Sultan Feb 23 '17 at 05:47