Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Architecturally, how are iPhone applications installed from the AppStore?

Tags:

iphone

When we hit that "install now" button via the AppStore, I am curious what is the process behind getting the app onto the iPhone?

Does it download a compressed zip? pkg? and does a XCOPY equivalent ?

like image 639
user82383 Avatar asked May 20 '09 18:05

user82383


1 Answers

It downloads an IPA file which is technically a zipped file that contains the app along with DRM signatures and other stuff. It deploys the app by copying the folder to /var/mobile/Applications/{GUID}/.

like image 133
mmx Avatar answered Sep 28 '22 00:09

mmx