PDF download Download Article PDF download Download Article

This wikiHow teaches you how to edit the contents of an APK file. To edit the files inside, you'll need to decompile (and then recompile) the package using APKtool on a computer. [1] Editing APK files requires knowledge of Java, as well as the file systems on both Windows and Android. This should only be done by advanced users.

Part 1
Part 1 of 3:

Installing APKTool

PDF download Download Article
  1. You also need to install Android Software Development Kit (SDK) to decompile and recompile APK files. The easiest way to install Android SDK is to download and install Android Studio from here .
    Advertisement
  2. This is the folder you will save the APKTool and your APK files to. Use the following steps to create a new folder: [2]
    • Right-click a black space on your desktop.
    • Select New' and then Folder'.
  3. To rename a folder, right-click on the folder and click Rename . Then type APK to rename the folder.
  4. Right-click this link and click Save link as . This opens a file browser you can use to select a place to save the apktool.bat file to.
  5. Use the file browser to navigate to the APK folder you just created on your desktop. Open the folder and click Save . This saves the apktool.bat file to the APK folder.
  6. Use the following steps to download apktool.jar:
  7. The file you download likely has the version number in the file name. You can remove that by right-click the file and clicking Rename . Then simply type apktool as the file name. The full file name should be "apktool.jar". By default, your downloaded files can be found in your "Downloads" folder.
  8. After you finished renaming the file, right-click it and click Copy or Cut . Then open the APK folder you created on your desktop and right-click inside. Click Paste . This will paste the "apktool.jar" file inside the APK folder.
  9. Advertisement
Part 2
Part 2 of 3:

Decompiling and Editing

PDF download Download Article
  1. APK files are available to download from various websites. You can also retrieve an APK from your Android device by connecting it to your computer using a charging cable and unlocking the device. Navigate to the Downloads folder on the device and copy and paste an APK file into the APK folder on your Windows Desktop.
  2. The search bar is usually located to the right of the Start menu.
  3. in the search results. It has an icon that resembles a black screen with a white cursor on it.
  4. You can open a folder inside of the command prompt by typing cd followed by the name of the folder. For example, if you are in the default "C:\Users\Username>" when you open the command prompt, you can open your desktop by typing cd desktop . If you copied the APK folder to your desktop, you could then open the APK folder by typing cd apk . It should say "C:\users\username\desktop\apk>" next to the prompt. [3]
    • If your APK folder is saved to another location, type cd \ next to the command prompt to return to the root "C:" drive. Then type cd followed by the full path of the APK folder.
  5. This installs the framework for the app.
    • For example, if the name of your APK file is "my-first-game.apk" you would type apk if my-first-game.apk in the command prompt.
  6. This de-compiles the APK file. The contents of the APK file will be placed in a separate folder of the same name as the APK file in the APK folder. You can now edit the decompiled APK files. You may need some coding skills to edit certain files within the folder.
    • Following the same example above, you would type apktool d my-first-game.apk in the command prompt.
  7. Advertisement
Part 3
Part 3 of 3:

Recompiling the APK

PDF download Download Article
  1. The search bar is usually located to the right of the Start menu. After you finish editing the files within the APK file folder, you will need to recompile the folder back into an APK file.
  2. in the search results. It has an icon that resembles a black screen with a white cursor on it.
  3. You can open a folder inside of the command prompt by typing cd followed by the name of the folder. For example, if you are in the default "C:\Users\Username>" when you open the command prompt, you can open your desktop by typing cd desktop . If you copied the APK folder to your desktop, you could then open the APK folder by typing cd apk . It should say "C:\users\username\desktop\apk>" next to the prompt.
    • If your APK folder is saved to another location, type cd\ next to the command prompt to return to the root "C:" drive. Then type cd followed by the full path of the APK folder.
  4. This re-compiles the folder into an APK file. The newly compiled APK file can be found in the "dist" folder inside the decompiled APK folder that Apktool created. [4]
    • For example, if the app you are working on is called "my-first-game.apk", you would type apktool b my-first-game.apk in the command prompt.
  5. To create a new folder on your desktop, right-click anywhere on your desktop and click New . Then click Folder . Right-click the new folder and click Rename . Then type "Signapk" as the new folder name.
  6. The newly compiled APK can be found in the "dist" folder of the uncompiled APK folder in "Apktool" folder. Right-click the APK and click Copy . Then, navigate back to the "Signapk" folder and paste the APK file inside the folder.
  7. Click here to download SignApk.zip. This downloads the SignApk file that is needed to sign an apk file.
  8. This extracts the "certificate.pem" file, the "key.pk8" file, and the "signapk.jar" into the "Signapk" folder.
  9. To navigate to the Signapk folder in the command prompt, type cd \ to return to the root directory. Then type cd followed by the full path of the Signapk folder directory.
    • If you created the Signapk folder on your desktop, the full path is most likely "C:\users\username\desktop\Signapk>"
  10. Replace "[apkfilename]" with the actual name of the apk file you want to sign. This creates a new signed APK file in the Signapk folder. Use this file to install the software on your Android system. [5]
    • For example, if the app you are working on is called "my-first-game.apk", you would type ava -jar signapk.jar certificate.pem key.pk8 my-first-game.apk my-first-game-signed.apk in the command prompt.
  11. Advertisement

Community Q&A

Search
Add New Question
  • Question
    When I publish the APK to the play store, it does not let me upload because of debugging. How do I fix this?
    Brandan Hepi
    Community Answer
    Did you resign the application with another key? Maybe you left the app in debugging mode when you recomplied.
Ask a Question
      Advertisement

      Video

      Tips

      Submit a Tip
      All tip submissions are carefully reviewed before being published
      Thanks for submitting a tip for review!

      About This Article

      Article Summary X

      1. Download and install Java Development Kit from https://www.oracle.com/technetwork/java/javase/downloads/index.html .
      2. Download and install Android Studio from https://developer.android.com/studio .
      3. Create a new folder on your Windows desktop called "APK".
      4. Search for apktool.bat on Google and save the file to the APK folder.
      5. Download apktool.jar from https://ibotpeaches.github.io/Apktool/ and save it to the APK folder.
      6. Place an apk file in the APK folder.
      7 Navigate to the APK folder in the Windows Command prompt.
      8. Type " apktool if " followed by the apk file name in the command prompt to install the apk framework.
      9. Type " apktool d " followed by the apk filename to decompile the apk file.
      10. Edit the files in the newly created folder in the APK folder.
      11. Type " apktool b " followed by the folder name of the decompiled apk folder to recompile the apk folder.
      12. Create a new folder on your Windows desktop called "Signapk".
      13. Copy the newly compiled apk from the "dist" folder in the decompiled apk folder to the newly created "Signapk" folder.
      14. Download Signapk.zip from https://forum.xda-developers.com/attachment.php?attachmentid=1846095&d=1364661948
      15. Extract the contents to the "Signapk folder.
      16. Navigate to the "Signapk" folder in the Command Prompt and type " java -jar signapk.jar certificate.pem key.pk8 [apkfilename].apk [apkfilename]-signed.apk " in the Command Prompt.

      Did this summary help you?
      Thanks to all authors for creating a page that has been read 207,180 times.

      Is this article up to date?

      Advertisement