Split package map
Detect APKM package parts such as base APK, architecture splits, language splits and density splits.
APKM split package
Extract APK files from an APKM package, identify the base APK and required splits, and generate the correct ADB installation command—all locally in your browser.
Supports: .apkm
Files never leave your device
Quick answer
Yes. An APKM file can be opened as an archive so you can extract its base APK and configuration split APKs. Most APKM packages cannot be converted into one universal APK; Android normally requires the base APK and all matching splits to be installed together.
Start local analysis
Before you select a file
Detect APKM package parts such as base APK, architecture splits, language splits and density splits.
Generate install-multiple guidance so required APK files stay together during installation.
Parse the embedded base APK manifest when available to show package identity and version.
Tool guide
Use this APKM extractor to open an APKM package and see every APK it contains. The report identifies the likely base APK, architecture splits, screen-density splits, language splits and other package parts so you can download or install the correct set.
Extract the base APK and split APK files from an APKM archive.
Identify architecture, density and language splits before installing.
Generate an ADB install-multiple command for complete split packages.
Download individual APK parts for testing or review.
An APK is an installable Android application package. An APKM is a container that usually holds several APK files selected for different device configurations.
| Question | APK | APKM |
|---|---|---|
| Contents | One Android app package | Base APK, configuration splits and metadata |
| Direct installation | Usually installs directly | Usually needs extraction or a split-aware installer |
| ADB command | adb install app.apk | adb install-multiple base.apk split_config.arm64_v8a.apk … |
| Can it become one APK? | Already one APK | Usually not without rebuilding and re-signing the app |
After extraction, keep base.apk and all splits required by your device in the same folder. Connect the Android device with USB debugging enabled, then run:
adb install-multiple base.apk split_config.arm64_v8a.apk split_config.en.apk split_config.xxhdpi.apkThe filenames vary by package. Use the command generated by this tool instead of copying the example unchanged. Leaving out a required split can cause INSTALL_FAILED_MISSING_SPLIT.
For device setup and troubleshooting, follow the complete ADB install APKM guide.
Continue the workflow