IPA (iOS app archive)
Also known as: ipa file, iphone app archive, ios app package
An IPA is the archive format that packages an iOS app for distribution. It is a ZIP file containing the app bundle, its resources, and signing data. You rarely see IPAs on a phone, since the App Store installs apps directly rather than handing you a file.
- ZIP-based archive of an iOS app bundle
- Includes a Payload folder and code signature
- Normally installed via App Store, not as a loose file
What an IPA holds
IPA stands for iOS App Store Package. It is a ZIP archive whose main item is a Payload folder containing the `.app` bundle — the compiled binary, images, storyboards, and other resources — plus a code-signing signature that ties the app to a developer and provisioning profile.
Because iOS only runs signed code, an IPA cannot simply be copied onto a phone and opened the way an APK can on Android. It is installed through the App Store, TestFlight, or a managed deployment tool.
Where IPAs show up
For most people, IPAs are invisible: tapping Get in the App Store downloads, installs, and discards the package automatically, so no file lingers in storage. You mainly encounter IPAs as a developer building, archiving, or testing an app, or when distributing internal builds.