IOS – How much free space do I need to install an app update

applicationsiossoftware-updatespace

For very large apps, such a GPS apps, the app store will decline updating an app if you don't have enough free space.

How much free space is needed?

For instance, I have a GPS navigation app that is currently using 1.8GB on my iPad. The update is 1.43GB. I have 1.9GB free.

The update would fit into the free space, but it still doesn't allow it. Perhaps it downloads it, then installs it before deleting the old one, meaning you'd need twice as much space in order to install it. It might even require more space if it then copies user data from the old app into the new one before deleting the old one and the installation file.

Having as much free space as the app takes isn't enough – so how much is required? Is 2*update enough, or will I need more free space?

Best Answer

Apps are submitted as .ipa files which is really just a zipped container of a .app file. In fact, you can simply unzip a .ipa file to see its true size.

Apps in the App Store are listed by their compressed size, and will need to be uncompressed after installing.

As of iOS 6, updates to apps only include files that have been changed. As of iOS 7, updates to apps only include changes to changed files.

So, I guess to answer the question directly, for any given app you would need: Free space to store the compressed app update file, free space to store the uncompressed app update file, and space currently being used by the app and all its data/caches.

https://developer.apple.com/library/ios/qa/qa1779/_index.html