Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Decompile XAPK file

I have worked pretty a lot analyzing Android projects with different reverse engineering tools, generally for secure purposes, to see what can be seen by a hacker when he/she gets my app. I've met a problem that I couldn't find any of decompilers capable to decompile files of "XAPK" format (not simple APK). I know, asking for a way to find a tool is not kind of questions good for stack overflow, but I am pretty sure there are many people with the same problem and I find it highly relevant. I tried apk-tool, decompilers provided with androguard tool, online-decompilers, none of them are capable of working with XAPKs.

like image 948
Jenya Pu Avatar asked Jan 28 '16 19:01

Jenya Pu


People also ask

How do I decode XAPK?

Step 1: Once the XAPK file has finished downloading, go to File Manager (or File Explorer) and rename the extension to zip. Step 2: After that, long press on the file to decompress it and it will reveal two major files — an APK file and an Android folder.

How extract XAPK file in mobile?

Use a mobile file explorer to locate the downloaded XAPK and rename it to . zip. Unzip in any folder. Create a new folder in the local folder system of your device, namely /sdcard/storage/emulated/0/Android/obb/<OBBname>/, where <OBBname> is the OBB file name itself without the extension.

Can I run XAPK on PC?

What is XAPK Installer PC version? XAPK Installer is a Tools app developed by TarrySoft. You can play XAPK Installer on PC after downloading an Android emulator from this page. Android emulators are software that run a virtual Android device on your computer.


1 Answers

The .xapk is just a ZIP file which contains the original .apk along with some other files. You can simply unzip the .xapk and decompile the .apk within.

For more details, there's Decompiling XAPK Files.

like image 165
Caleb Fenton Avatar answered Sep 19 '22 09:09

Caleb Fenton