Skip to content
Surf Wiki
Save to docs
technology/operating-systems

From Surf Wiki (app.surf) — the open knowledge base

Apk (file format)

File format for Android software


File format for Android software

FieldValue
nameAPK
iconFile:APK format icon (2014-2019).png
mime
genrePackage format
extended fromJAR

The Android Package with the file extension apk is the file format used by the Android operating system and a number of other Android-based operating systems for distribution and installation of mobile apps, mobile games and middleware. A file using this format can be built from source code written in either Java or Kotlin.

APK files can be generated and signed from Android App Bundles.

Overview

APK is analogous to other software packages such as APPX in Microsoft Windows, APP for HarmonyOS or a Debian package in Debian-based operating systems. To make an APK file, a program for Android is first compiled using a tool such as Android Studio or Visual Studio and then all of its parts are packaged into one container file. An APK file contains all of a program's code (such as .dex files), resources, assets, certificates, and manifest file. As is the case with many file formats, APK files can have any desired name but, for the system to recognize them, the .apk filename suffix may be necessary.

Most Android implementations allow users to manually install APK files (sideloading) only after they turn on an "Unknown Sources" setting that allows installation from sources other than trusted ones such as Google Play. This may be done for many reasons, such as during the development of apps, to install apps not available on the store, or to install an older version of an app in the Play Store.

Use on other operating systems

The QNX-based BlackBerry 10 included an Android runtime environment; initially, apps were required to be packaged in the operating system's native format, and installed via the BlackBerry World app store or sideloading. Beginning on BlackBerry 10.2.1, the operating system added support for sideloading APK files directly.

At Build 2015, Microsoft announced an Android runtime environment for Windows 10 Mobile codenamed "Astoria" (later renamed Windows Bridge for Android), which would allow Android apps to run in an emulated environment with minimal changes, and have access to Microsoft platform APIs such as Bing Maps and Xbox Live as nearly drop-in replacements for equivalent Google Mobile Services. Google Mobile Services and certain core APIs would not be available, and apps with "deep integration into background tasks" were said to poorly support the environment. On February 25, 2016, after already having delayed it in November 2015, Microsoft announced that Windows Bridge for Android would be shelved, in favor of focusing on Windows Bridge for iOS (a native implementation of the iOS Objective-C APIs, which allows Xcode projects to be converted to Visual Studio projects targeting Windows platforms) and cross-platform development using the C# language instead. Portions of Astoria were used as a basis for Windows Subsystem for Linux (WSL) on the PC version of Windows 10.

On August 9, 2019, HarmonyOS came with APK compatibility via AOSP base with Linux kernel on HarmonyOS 1.0 for TVs and also June 2, 2021, HarmonyOS 2.0 version expanded to smartphones and tablets until Galaxy Edition version under HarmonyOS NEXT system for the next iterative HarmonyOS 5 beta to commercial version, starting in November 26, 2024 stable, officially dropping APK support.

In June 2021, Microsoft announced the "Windows Subsystem for Android" (WSA), an AOSP-based layer for sideloading Android apps on Windows 11. The software utilized a runtime compiler developed by Intel, and apps could be sideloaded, published via Microsoft Store, or obtained via an Amazon Appstore client. Microsoft deprecated and discontinued WSA in March 2025.

Package contents

An APK file is a ZIP archive that usually contains the following files and directories:

  • META-INF directory:
    • MANIFEST.MF: the Manifest file
    • The certificate of the application.
    • CERT.SF: The list of resources and a SHA-1 digest of the corresponding lines in the MANIFEST.MF file; for example:Signature-Version: 1.0 Created-By: 1.0 (Android) SHA1-Digest-Manifest: wxqnEAI0UA5nO5QJ8CGMwjkGGWE= ... Name: res/layout/exchange_component_back_bottom.xml SHA1-Digest: eACjMjESj7Zkf0cBFTZ0nqWrt7w= Name: res/drawable-hdpi/icon.png SHA1-Digest: DGEqylP8W0n0iV/ZzBx3MW0WGCA=
  • lib: the directory containing the compiled code that is platform dependent, for example native libraries that can be loaded through JNI; the directory is split into more directories within it:
    • armeabi-v7a: compiled code for all ARMv7 and above based processors only
    • arm64-v8a: compiled code for all ARMv8 arm64 and above based processors only
    • x86: compiled code for x86 processors only
    • x86_64: compiled code for x86-64 processors only
    • mips and armeabi, deprecated since NDK r17
  • res: the directory containing resources not compiled into resources.arsc (see below).
  • assets: a directory containing applications assets, which can be retrieved by AssetManager.
  • AndroidManifest.xml: An additional Android manifest file, describing the name, version, access rights, referenced library files for the application. This file may be in Android binary XML that can be converted into human-readable plaintext XML with tools such as AXMLPrinter2, Apktool M, or Androguard.
  • classes.dex: The classes compiled in the dex file format executed by Android Runtime (or by Dalvik virtual machine used in Android 4.4 KitKat).
  • resources.arsc: a file containing precompiled resources, such as binary XML, for example.

References

References

  1. "Application Fundamentals".
  2. Peters, Jay. (2021-06-30). "Google is moving away from APKs on the Play Store".
  3. "Application Studio".
  4. (2008). "Inside the Android Application Framework". Google Sites.
  5. (27 July 2018). "Unknown Sources: Everything you need to know!".
  6. Segan, Sascha. (January 31, 2013). "How BlackBerry 10 Runs 28,000 Android Apps Without a Back Button".
  7. Kastrenakes, Jacob. (June 18, 2014). "BlackBerry will bring thousands of apps from Amazon's store to its phones".
  8. (2014-01-28). "There was no mention of Android app support in the official BlackBerry 10.2.1 announcement, but it's there!".
  9. "How will Android support work in Windows 10 for Phones?".
  10. (April 29, 2015). "Microsoft brings Android, iOS apps to Windows 10".
  11. (November 16, 2015). "Microsoft might not bring Android apps to Windows after all". Vox Media.
  12. Collins, Katie. (November 16, 2015). "Microsoft presses pause on tool for porting Android apps to Windows 10". [[CBS Interactive]].
  13. (February 25, 2016). "Microsoft confirms: Android-on-Windows Astoria tech is gone". Conde Nast.
  14. (February 25, 2016). "An Update on the Developer Opportunity and Windows 10". Microsoft.
  15. (April 6, 2016). "Why Microsoft needed to make Windows run Linux software". [[Condé Nast]].
  16. (2021-06-11). "Google apps still working after upgrading to HarmonyOS from EMUI, don't need to panic".
  17. (7 February 2024). "HarmonyOS NEXT Galaxy will officially meet users in Spring: Huawei".
  18. Matsui, Emiko. (2024-04-11). "Huawei to launch HarmonyOS NEXT beta at HDC 2024 event in June".
  19. (2024-02-29). "Huawei's HarmonyOS has ADB mode, could it be based on Android?".
  20. Linder, Brad. (2023-11-13). "Huawei's next version of HarmonyOS will drop support for Android apps".
  21. Jordan, Novet. (June 24, 2021). "Microsoft Windows 11 will support Android apps".
  22. Warren, Tom. (June 24, 2021). "Microsoft is bringing Android apps to Windows 11 with Amazon's Appstore". [[The Verge]].
  23. Gartenberg, Chaim. (June 24, 2021). "Windows 11's Intel-powered Android apps will run on AMD and Arm processors, too".
  24. (5 March 2024). "Microsoft to end its Android apps on Windows 11 subsystem in 2025".
  25. "ABI Management {{!}} Android Developers".
  26. "Android ABIs {{!}} Android NDK".
  27. Dan, Albert. (Sep 5, 2018). "Changelog r17".
Info: Wikipedia Source

This article was imported from Wikipedia and is available under the Creative Commons Attribution-ShareAlike 4.0 License. Content has been adapted to SurfDoc format. Original contributors can be found on the article history page.

Want to explore this topic further?

Ask Mako anything about Apk (file format) — get instant answers, deeper analysis, and related topics.

Research with Mako

Free with your Surf account

Content sourced from Wikipedia, available under CC BY-SA 4.0.

This content may have been generated or modified by AI. CloudSurf Software LLC is not responsible for the accuracy, completeness, or reliability of AI-generated content. Always verify important information from primary sources.

Report