APK
From Just Solve the File Format Problem
				
								
				(Difference between revisions)
				
																
				
				
								
				| Dan Tobias  (Talk | contribs)  (Created page with "{{FormatInfo |formattype=electronic |subcat=Archiving |extensions={{ext|apk}} }}  '''APK''' is an archive format used for distributing Android apps. It is based on the [[J...") | Dan Tobias  (Talk | contribs)  | ||
| Line 11: | Line 11: | ||
| == Links == | == Links == | ||
| * [[Wikipedia:APK (file format)|Wikipedia article]] | * [[Wikipedia:APK (file format)|Wikipedia article]] | ||
| + | |||
| + | [[Category:ZIP based file formats]] | ||
Revision as of 23:55, 23 July 2013
APK is an archive format used for distributing Android apps. It is based on the Jar format (for Java), and like that format, is actually a ZIP archive with a different extension, and with specific files and directories within it.
Metadata about the app is in a META-INF directory within the archive (similarly to Jar files), compiled code is in a lib directory, and resources in a res directory. There are also a few files at the root level including AndroidManifest.xml (which may be regular XML or, often, binary XML).

