The iPhone Wiki is no longer updated. Visit this article on The Apple Wiki for current information. |
Difference between revisions of "IPA File Format"
m |
m (→Usage) |
||
(One intermediate revision by one other user not shown) | |||
Line 16: | Line 16: | ||
== Usage == |
== Usage == |
||
− | Apple uses the IPA format for packaging [[iOS]] |
+ | Apple uses the IPA format for packaging [[iOS]] applications. [[iTunes]] can be used to install their contents on a [[iDevice|device]], provided the included files are signed. Developers can use the IPA format for [[Ad Hoc Distribution]] of their apps. |
== Creation == |
== Creation == |
||
Line 38: | Line 38: | ||
== External Links == |
== External Links == |
||
* Apple Question & Answers [http://developer.apple.com/library/ios/#qa/qa1686/_index.html QA1686] - ''App Icons on iPad and iPhone'' |
* Apple Question & Answers [http://developer.apple.com/library/ios/#qa/qa1686/_index.html QA1686] - ''App Icons on iPad and iPhone'' |
||
+ | |||
+ | [[Category:File Formats]] |
Latest revision as of 21:01, 2 December 2022
An IPA archive is the de facto way to package applications for iOS. The extension has no official definition, but is commonly called iPhone Application by the iOS community. The file is just a renamed ZIP archive. Although any computer with a ZIP archive reader can extract an IPA, PNG images (e.g. the app's icon files) are typically in a proprietary variant of the PNG format instead of the standardized PNG format, and the application binary is encrypted (DRM) which prevents examination of the binary.
Contents
As an IPA file is just a renamed ZIP archive, its structure is available from PKWARE.
iTunesArtwork
iTunesMetadata.plist
Payload/
{ApplicationName}.app/
- (various application files)
iTunesArtwork
As per Technical Q&A QA1686, the iTunesArtwork
file should be a PNG image. However, Apple, among many other developers, contradict this by using JPEGs instead.
Examination of nearly any iTunesArtwork
file with a hex editor can be used to confirm this. If the file's first two bytes are ff d8
(hex), the file is a JPEG. If the first 8 bytes are 89 50 4e 47 0d 0a 1a 0a
(hex), the file is a PNG.
Usage
Apple uses the IPA format for packaging iOS applications. iTunes can be used to install their contents on a device, provided the included files are signed. Developers can use the IPA format for Ad Hoc Distribution of their apps.
Creation
IPA files are typically created through Xcode, but may be created manually:
- Build application
- Locate the
.app
folder - Create a folder named
Payload
- Place your
.app
folder in it - Create a 512x512 JPEG version of your icon (see above section)
- Save it as
iTunesArtwork
(no extension) - Create your
iTunesMetadata.plist
and save it - "ZIP" the contents
iTunesArtwork
iTunesMetadata.plist
Payload/
See Also
External Links
- Apple Question & Answers QA1686 - App Icons on iPad and iPhone