Windows 10 / 11

How to Convert XAPK to APK on Windows PC

A short guide to going from a .xapk file to an installable APK on a Windows desktop using the free browser-based converter.

Open the converter

Why use the browser tool on Windows

🪟

Nothing to install

No setup, no admin rights — just open the page in Edge, Chrome, or Firefox and pick a file.

🔒

Files stay local

The page reads your XAPK locally in the browser. The file is not sent to a server.

🎯

Drag and drop

Drop the .xapk file onto the upload area and let the page merge the splits for you.

📂

OBB-aware

If the package contains OBB data, the converter exposes it so you can place it under Android/obb manually.

Browser requirements

Operating SystemWindows 7, 8, 10, or 11
BrowserRecent Chrome, Edge, Firefox, Opera, or Brave
RAM4 GB is comfortable for most files
Disk spaceJust enough room for the XAPK and the resulting APK

Step-by-step on Windows

1
Open xapktoapk.com in Edge, Chrome, or Firefox.
2
Drag your .xapk file onto the upload area, or click to browse.
3
Wait for the page to read the archive and merge the split APKs.
4
Click Download APK when the conversion is complete.
5
Transfer the APK to your Android device over USB, cloud storage, or ADB and install it.

Optional: install over ADB from your PC

If you already have the Android platform-tools installed, you can push the APK directly from Windows:

adb install converted-app.apk
adb push main.obb /sdcard/Android/obb/com.package.name/

Manual fallback: extract with ZIP tools

Because XAPK is essentially a ZIP archive, you can also handle it without any extra tool:

  1. Make a copy of the file and rename the extension from .xapk to .zip.
  2. Right-click and choose Extract All in File Explorer, or open the archive with 7-Zip.
  3. Locate the base APK inside the extracted folder. If there are several split APKs (for example, config.arm64_v8a.apk), the browser converter is the easier path because it merges them for you.
  4. If the package includes an OBB file, copy it under Android/obb/<package-name>/ on your phone after installing the APK.

Frequently asked questions

Do I need to install anything on Windows?

No. The converter is a web page; opening it in your browser is enough.

Does it work on Windows 7 or 8?

Yes, as long as the browser you use is current. Older Internet Explorer is not supported.

Can I convert without an internet connection?

Once the page is loaded, processing happens locally. You can technically disconnect and the converter will still finish the file in front of you.

How do I install the APK on my phone?

Move the file to your phone, open it from a file manager, and approve the install. Android may prompt you to allow installs from that file manager the first time.