Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

apk (file format)

From Wikipedia, the free encyclopedia
File format for Android software
This article is about the Android package format. For the Alpine Linux package format, seeAlpine Linux.
APK
Filename extension
.apk,.apks,.aab,.xapk,.apkm,.akp
Internet media type
application/vnd.android.package-archive
Type of formatPackage format
Container for
Extended fromJAR

TheAndroid Package with the file extensionapk[1] is thefile format used by theAndroid operating system and a number of other Android-based operating systems for distribution and installation ofmobile apps,mobile games andmiddleware. A file using this format can be built from source code written in eitherJava orKotlin.

APK files can be generated and signed fromAndroid App Bundles.[2]

Overview

[edit]

APK is analogous to othersoftware packages such asAPPX inMicrosoft Windows,APP forHarmonyOS or aDebian package inDebian-based operating systems. To make an APK file, a program for Android is first compiled using a tool such asAndroid Studio[3] orVisual 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, andmanifest 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.[4]

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 likeGoogle Play. One may do so for many reasons, such as during the development of apps, to install apps not found on the store, or to install an older version of an existing app.[5]

Use on other operating systems

[edit]

TheQNX-basedBlackBerry 10 included an Android runtime environment; initially, apps were required to be packaged in the operating system's native format, and installed via theBlackBerry World app store or sideloading.[6] Beginning on BlackBerry 10.2.1, the operating system added support for sideloading APK files directly.[7][8]

AtBuild 2015,Microsoft announced an Android runtime environment forWindows 10 Mobile codenamed "Astoria" (later renamedWindows 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 asBing Maps andXbox Live as nearly drop-in replacements for equivalentGoogle 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.[9][10] On February 25, 2016, after already having delayed it in November 2015,[11][12] Microsoft announced that Windows Bridge for Android would be shelved, in favor of focusing on Windows Bridge foriOS (a native implementation of the iOSObjective-C APIs, which allowsXcode projects to be converted toVisual Studio projects targeting Windows platforms) and cross-platform development using theC# language instead.[13][14] Portions of Astoria were used as a basis forWindows Subsystem for Linux (WSL) on the PC version of Windows 10.[15]

On August 9, 2019,HarmonyOS came with APK compatibility viaAOSP base withLinux 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 underHarmonyOS NEXT system for the next iterative HarmonyOS 5 beta to commercial version, starting in November 26, 2024 stable, officially dropping APK support.[16][17][18][19][20]

In June 2021, Microsoft announced the "Windows Subsystem for Android" (WSA), an AOSP-based layer for sideloading Android apps onWindows 11. The software utilized a runtime compiler developed byIntel, and apps could be sideloaded, published viaMicrosoft Store, or obtained via an Amazon Appstore client.[21][22][23] In March 2024, Microsoft announced that WSA would be deprecated and discontinued in March 2025.[24]

Package contents

[edit]

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

  • META-INF directory:
    • MANIFEST.MF: theManifest file
    • The certificate of the application.
    • CERT.SF: The list of resources and aSHA-1digest of the corresponding lines in the MANIFEST.MF file; for example:
      Signature-Version: 1.0Created-By: 1.0 (Android)SHA1-Digest-Manifest: wxqnEAI0UA5nO5QJ8CGMwjkGGWE=...Name: res/layout/exchange_component_back_bottom.xmlSHA1-Digest: eACjMjESj7Zkf0cBFTZ0nqWrt7w=Name: res/drawable-hdpi/icon.pngSHA1-Digest: DGEqylP8W0n0iV/ZzBx3MW0WGCA=
  • lib: the directory containing the compiled code that is platform dependent, for example native libraries that can be loaded throughJNI; the directory is split into more directories within it:
    • armeabi-v7a: compiled code for allARMv7 and above based processors only
    • arm64-v8a: compiled code for allARMv8 arm64 and above based processors only[25]
    • x86: compiled code forx86 processors only
    • x86_64: compiled code forx86-64 processors only
    • mips andarmeabi, deprecated since NDK r17[26][27]
  • res: the directory containing resources not compiled into resources.arsc (see below).
  • assets: a directory containing applications assets, which can be retrieved byAssetManager.
  • AndroidManifest.xml: An additional Android manifest file, describing the name, version, access rights, referenced library files for the application. This file may be in Androidbinary 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 thedex file format executed byAndroid Runtime (or byDalvik virtual machine used inAndroid 4.4 KitKat).
  • resources.arsc: a file containing precompiled resources, such as binary XML, for example.

See also

[edit]

Further reading

[edit]

References

[edit]
  1. ^"Application Fundamentals".Android Developers.Archived from the original on 21 November 2020. Retrieved3 December 2018.
  2. ^Peters, Jay (30 June 2021)."Google is moving away from APKs on the Play Store".The Verge.Archived from the original on 4 August 2021. Retrieved15 August 2021.
  3. ^"Application Studio".Android Developers.Archived from the original on 2021-09-12. Retrieved2020-02-22.
  4. ^"Inside the Android Application Framework"(video).Google Sites. 2008.Archived from the original on 2011-12-24. Retrieved2008-10-22.
  5. ^"Unknown Sources: Everything you need to know!".Android Central. 27 July 2018.Archived from the original on 1 September 2021. Retrieved4 March 2020.
  6. ^Segan, Sascha (January 31, 2013)."How BlackBerry 10 Runs 28,000 Android Apps Without a Back Button".PC Magazine.Archived from the original on 5 June 2023. Retrieved18 June 2014.
  7. ^Kastrenakes, Jacob (June 18, 2014)."BlackBerry will bring thousands of apps from Amazon's store to its phones".The Verge.Archived from the original on June 4, 2023. RetrievedJune 18, 2014.
  8. ^"There was no mention of Android app support in the official BlackBerry 10.2.1 announcement, but it's there!".CrackBerry. 2014-01-28. Retrieved2025-11-22.
  9. ^"How will Android support work in Windows 10 for Phones?".TechRadar Pro. Archived fromthe original on May 19, 2015. RetrievedMay 22, 2015.
  10. ^"Microsoft brings Android, iOS apps to Windows 10".Ars Technica. April 29, 2015.Archived from the original on July 8, 2017. RetrievedApril 30, 2015.
  11. ^"Microsoft might not bring Android apps to Windows after all".The Verge. Vox Media. November 16, 2015.Archived from the original on November 17, 2015. RetrievedNovember 16, 2015.
  12. ^Collins, Katie (November 16, 2015)."Microsoft presses pause on tool for porting Android apps to Windows 10".CNET.CBS Interactive.Archived from the original on July 9, 2017. RetrievedMay 26, 2022.
  13. ^"Microsoft confirms: Android-on-Windows Astoria tech is gone".Ars Technica. Conde Nast. February 25, 2016.Archived from the original on February 25, 2016. RetrievedFebruary 25, 2016.
  14. ^"An Update on the Developer Opportunity and Windows 10".Building Apps for Windows blog. Microsoft. February 25, 2016.Archived from the original on February 26, 2016. RetrievedFebruary 25, 2016.
  15. ^Bright, Peter (April 6, 2016)."Why Microsoft needed to make Windows run Linux software".Ars Technica.Condé Nast.Archived from the original on April 6, 2016. RetrievedMay 26, 2022.
  16. ^"Google apps still working after upgrading to HarmonyOS from EMUI, don't need to panic".Huawei. 2021-06-11.Archived from the original on 2025-06-07. Retrieved2025-05-26.
  17. ^Matsui, Emiko (7 February 2024)."HarmonyOS NEXT Galaxy will officially meet users in Spring: Huawei".HC Newsroom.Archived from the original on 14 September 2024. Retrieved12 February 2024.
  18. ^Matsui, Emiko (2024-04-11)."Huawei to launch HarmonyOS NEXT beta at HDC 2024 event in June".Huawei Central.Archived from the original on 2024-05-29. Retrieved2024-04-11.
  19. ^"Huawei's HarmonyOS has ADB mode, could it be based on Android?".KLGadgetGuy. 2024-02-29.Archived from the original on 2024-05-01. Retrieved2024-05-03.
  20. ^Linder, Brad (2023-11-13)."Huawei's next version of HarmonyOS will drop support for Android apps".Liliputing.Archived from the original on 2024-05-03. Retrieved2024-05-03.
  21. ^Jordan, Novet; Leswing, Kif; Haselton, Todd (June 24, 2021)."Microsoft Windows 11 will support Android apps".CNBC.Archived from the original on June 24, 2021. RetrievedJune 24, 2021.
  22. ^Warren, Tom (June 24, 2021)."Microsoft is bringing Android apps to Windows 11 with Amazon's Appstore".The Verge.Archived from the original on June 24, 2021. RetrievedJune 24, 2021.
  23. ^Gartenberg, Chaim (June 24, 2021)."Windows 11's Intel-powered Android apps will run on AMD and Arm processors, too".The Verge.Archived from the original on June 24, 2021. RetrievedJune 24, 2021.
  24. ^Warren, Tom (5 March 2024)."Microsoft to end its Android apps on Windows 11 subsystem in 2025".The Verge.Archived from the original on 5 May 2024. Retrieved5 March 2024.
  25. ^"ABI Management | Android Developers".developer.android.com.Archived from the original on 31 May 2019. Retrieved16 June 2018.
  26. ^"Android ABIs | Android NDK".Android Developers.Archived from the original on 2019-04-08. Retrieved2020-08-14.Note: Historically the NDK supported ARMv5 (armeabi), and 32-bit and 64-bitMIPS, but support for these ABIs was removed in NDK r17.
  27. ^Dan, Albert (Sep 5, 2018)."Changelog r17".GitHub.Archived from the original on 2020-08-28. Retrieved2020-08-14.Support for ARMv5 (armeabi), MIPS, and MIPS64 has been removed. Attempting to build any of theseABIs will result in an error.
Software
development
Development tools
Official
Other
Integrated development
environments
(IDE)
Languages,databases
Augmented reality andvirtual reality
Events,communities
Releases
Derivatives
Devices
Pixel
Nexus
Play edition
Custom
distributions
Booting and
recovery
APIs
AlternativeUIs
Rooting
Lists
Related topics
Archiving only
Compressing only
Archiving
and compressing
Software packaging
and distributing
Document packaging
and distributing
Retrieved from "https://en.wikipedia.org/w/index.php?title=Apk_(file_format)&oldid=1323759132"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp