A short guide to converting a .xapk file into an installable APK on a Mac using the free browser-based converter. No installation required.
Works on Apple Silicon and Intel Macs in Safari, Chrome, Firefox, and other modern browsers.
The page reads your XAPK in the browser. The file is not uploaded to a server.
Drop the .xapk file onto the upload area; the page merges the splits and produces a single APK.
If the package contains OBB data, you can pull it out and place it under Android/obb on your device.
| macOS version | macOS 11 (Big Sur) or newer recommended |
| Architecture | Apple Silicon (M-series) or Intel |
| Browser | Recent Safari, Chrome, Firefox, Edge, or Brave |
| Disk space | Just enough for the source XAPK and the resulting APK |
.xapk file onto the upload area, or click to browse.If you have the Android platform-tools installed (for example via Homebrew), you can push the APK directly:
# Install platform-tools (one time)
brew install --cask android-platform-tools
# Install the converted APK
adb install ~/Downloads/converted-app.apk
# Push OBB files if needed
adb push main.obb /sdcard/Android/obb/com.package.name/
XAPK is a ZIP archive. macOS can open it without any extra software:
.xapk to .zip.Android/obb/<package-name>/ on your device after installing the APK.No. The converter is a web page; opening it in Safari, Chrome, or Firefox is enough.
Yes — the page runs identically on M-series and Intel Macs.
APKs are Android packages and cannot be installed natively on macOS. Move the APK to an Android device to install.
Browser memory is finite. If the page runs out of memory on a very large file, try a desktop browser with more RAM available, close other tabs, or fall back to manual ZIP extraction.