Big_Fan
Big_Fan

Reputation: 415

How to open apk files

Yea this might seem like a noob question, but how do you open .apk files? I can't get to open using the AVD manager. Thanks.

Upvotes: 10

Views: 73346

Answers (4)

sandalone
sandalone

Reputation: 41769

On Windows you have to rename it to ZIP and extract.

On Linux just right click on APK and extract it. Linux recognizes it as an archive file by default.

On Mac, I had issues with renaming so I extract file via Terminal by using the command unzip xyz.apk -d apkDir (it will extract into apkDir directory)

You will then see encrypted Java and XML files which you cannot open (without some extra effort). But you will be able to see and open files from /assets.

Upvotes: 9

sugansoft
sugansoft

Reputation: 1237

Rename your .apk file to .zip file.. and try to extract the file... If you are using windows,mac,ubuntu you can follow this method NOTE: Extracting an .apk will help you to find the images used in their app.

Upvotes: 3

Abdulkader Khateeb
Abdulkader Khateeb

Reputation: 107

You can use Bluestack or Geny motion as APK Simulator

Upvotes: 0

Sam Dozor
Sam Dozor

Reputation: 40754

APK files are meant to be used by the Android OS to install an application. If you want to use one on an android phone/simulator, use "adb install something.apk" from the terminal/command line. Alternatively, you could email the apk to yourself, then open your email on the device and open the attachment.

APK files are basically just a wrapper around an app, you can also open one in a program like WinRAR or some other unzipping/decompression program on your computer to view their contents.

Upvotes: 11

Related Questions