I want to add an 80 MB framework to my iOS App that is currently about 30 MB. Will the size of my app be 110 MB?
iOS app - size of the app is too big after install SDK from POD
1.6k Views Asked by coders At
1
There are 1 best solutions below
Related Questions in IOS
- Overlapping UICollectionView in storyboard
- Cannot pod spec lint because of undeclared type errors
- Is the transactionReceipt data present in dataWithContentsOfURL?
- UIWebView Screen Fitting Issue
- ZXingObjC encoding issues
- iOS: None of the valid provisioning profiles allowed the specific entitlements
- How to hide "Now playing url" in control center
- CloudKit: Preventing Duplicate Records
- Slow performance on ipad erasing image
- Swift code with multiple NSDateFormatter - optimization
- iOS 8.3 Safari crashes on input type=file
- TTTTimeIntervalFormatter always returns strings in English
- How do I add multiple in app purchases in Swift Spritekit?
- Setup code for xibs in iOS. -awakFromNb:
- iOS Voice Over only reads out the title of any alert views
Related Questions in OPTIMIZATION
- Does compiler optimize operation on const variable and literal const number?
- Optimizing for Social Leaderboards
- 3D FFT with data larger than cache
- Optimum directory structure for large number of files to display on a page
- How to make faster queries on my mysql table?
- Xib taking long time (>1s) to load. UIFont cache seems to blame
- How to speed up string comparisons in an array with a for loop?
- How to load all symbols from shared library on start up?
- Cython speed vs numpy
- Improve Speed of Piecewise Function in MATLAB
- How to check that all values are equal in array using recursion?
- PHP split string into known tokens and remaining words add to single-worded array
- Python: why is my O(n) slowing down as it progresses?
- Hint indexes to mysql on Join
- Error When Compiler Optimizations are on
Related Questions in IPA
- Alter Minimum OS Version of IPA without XCode, iOS 8+
- How to serve my own iOS ipa (ipad install) file?
- how to check IOS devices supported by my IPA file
- Watchkit failed to upload to App Store
- CocoaPods won't install on device?
- How to build an iOS binary without setting an Apple Developer account and team?
- Xcode and Distribution .ipa application provisioning profiles
- Creating distribution IPA without giving access to an Apple Developer account
- Re-sign .ipa with less or more devices
- gradle task create IPA
- Create an IPA file with ionic
- gradle task Ipa stopped at 88%
- Xcode creates wrong IPA folder structure
- How to create ipa in xcode 6 without Apple Developer account?
- Find if an ipa file is 32 or 64-bit. (macos/unix)
Related Questions in APP-THINNING
- How to reduce app size using app thinning and explain different ways to reduce app size
- What does "strip Swift symbols" in Xcode actually do?
- ARkit and Appthinning.plist error
- How to enable App Thining feature?
- Expo React Native IOS TestFlight. (Errors occurred in the app thinning process)
- react-native-face-detection failed iOS build while uploading on TestFlight
- iOS app - size of the app is too big after install SDK from POD
- iOS9: Will App Thinning work on older iOS version before iOS9?
- Xamarin - Submitted App - Error occurred in thinning process
- iOS App Thinning - How to implement it depending on screen size?
- How do I access On Demand Resources on Unity application for IOS?
- How do we enable/Disable App slicing feature of iOS 9
- Xcode Asset Catalog - is there a way to mark a sprite for iPad non-retina only?
- App Thinning Size Report reports totally different size then App Store size
- Implications of migrating an iOS app to App Thinning and Bitcode?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Short answer:
You'll have to add the SDK and compile the code to see what your resulting size is.
Details:
When you build an app, the compiler rewrites it into machine-readable code, doing some further magic to optimize the end result. Because of this, the size of your code files, including SDK files, has no relationship whatsoever to the completed app executable's size.
For one example, your code may have tons of comments in it. However, the compiler wouldn't even look at those comments when producing the final app.
Additionally, an app compiled for
debugwill be larger than the same app compiled forrelease. That's because the compiler will leave some things in thedebugversion for troubleshooting that it does not include in a finalreleaseversion.As noted in some of the comments, when you submit your code to the Store, it may be further "trimmed", possibly ending up with an even smaller size. (In very simple terms, Apple has found a way to share common base code between apps on a device. The common code is removed from apps submitted to the store, since the apps can use that central base code instead. This results in smaller, faster apps.)
There are various things you can do to optimize an app into the smallest possible footprint, just as there are ways you can optimize an app to be faster or more responsive. Doing so, though, is totally dependent on the tools you're using, the statements you use, the way you import items, etc. You would have to consider these items individually. (For example, are you using the best structure for a task - array?, dictionary?, set? Are you using the most efficient method to perform a task? There's this whole "Big-O" thing... ;)