How to Edit APK Files

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. Editing APK files requires knowledge of Java, as well as the...
Part 1 of 3:

Installing APKTool

  1. How to Edit APK Files Picture 1How to Edit APK Files Picture 1
    Install Java Development kit. It is available for download at https://www.oracle.com/technetwork/java/javase/downloads/index.html.
  2. How to Edit APK Files Picture 2How to Edit APK Files Picture 2
    Install Android SDK. 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.
  3. How to Edit APK Files Picture 3How to Edit APK Files Picture 3
    Create a new folder on your desktop. This is the folder you will save the APKTool and your APK files to. Use the following steps to create a new folder.
    1. Right-click a black space on your desktop.
    2. Select New' and then Folder'.
  4. How to Edit APK Files Picture 4How to Edit APK Files Picture 4
    Rename the folder "APK". To rename a folder, right-click on the folder and click Rename. Then type APK to rename the folder.
  5. How to Edit APK Files Picture 5How to Edit APK Files Picture 5
    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.
  6. How to Edit APK Files Picture 6How to Edit APK Files Picture 6
    Navigate to the APK folder and click Save. 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.
  7. How to Edit APK Files Picture 7How to Edit APK Files Picture 7
    Download the "apktool.jar" file. Use the following steps to download apktool.jar:
    1. Go to https://ibotpeaches.github.io/Apktool/ in a web browser.
    2. Click Download below the latest version under "News".
  8. How to Edit APK Files Picture 8How to Edit APK Files Picture 8
    Rename the file "apktool.jar". 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.
  9. How to Edit APK Files Picture 9How to Edit APK Files Picture 9
    Copy apktool.jar to the APK folder. 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.[1]
Part 2 of 3:

Decompile the APK

  1. How to Edit APK Files Picture 10How to Edit APK Files Picture 10
    Copy the APK file to your APK folder. 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. How to Edit APK Files Picture 11How to Edit APK Files Picture 11
    Open the Windows search bar and type cmd. The search bar is usually located to the right of the Start menu.
  3. How to Edit APK Files Picture 12How to Edit APK Files Picture 12
    Command Prompt in the search results. It has an icon that resembles a black screen with a white cursor on it.
  4. How to Edit APK Files Picture 13How to Edit APK Files Picture 13
    Navigate to the APK folder at the command prompt. 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:UsersUsername>" 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 can then open the APK folder by typing cd apk. It should say "C:usersusernamedesktopapk>" next to the prompt.
    1. 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. How to Edit APK Files Picture 14How to Edit APK Files Picture 14
    Type apktool if followed by the APK file name. This installs the framework for the app.
    1. 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. How to Edit APK Files Picture 15How to Edit APK Files Picture 15
    Type apktool d followed by the APK filename. This decompiles 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.
    1. Following the same example above, you would type apktool d my-first-game.apk in the command prompt.
Part 3 of 3:

Recompile the APK

  1. How to Edit APK Files Picture 16How to Edit APK Files Picture 16
    Open the Windows search bar and type cmd. 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. How to Edit APK Files Picture 17How to Edit APK Files Picture 17
    Command Prompt in the search results. It has an icon that resembles a black screen with a white cursor on it.
  3. How to Edit APK Files Picture 18How to Edit APK Files Picture 18
    Navigate to the APK folder at the command prompt. 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:UsersUsername>" 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 can then open the APK folder by typing cd apk. It should say "C:usersusernamedesktopapk>" next to the prompt.
    1. 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. How to Edit APK Files Picture 19How to Edit APK Files Picture 19
    Type apktool b followed by the folder name of the APK you want to recompile. This recompiles 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.
    1. 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. How to Edit APK Files Picture 20How to Edit APK Files Picture 20
    Create a new folder called "Signapk" on your desktop. 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. How to Edit APK Files Picture 21How to Edit APK Files Picture 21
    Copy the newly compiled APK into the "Signapk" folder. 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. How to Edit APK Files Picture 22How to Edit APK Files Picture 22
    Click here to download SignApk.zip. This downloads the SignApk file that is needed to sign an apk file.
  8. How to Edit APK Files Picture 23How to Edit APK Files Picture 23
    Extract the contents of SignApk.zip into the Signapk folder. This extracts the "certificate.pem" file, the "key.pk8" file, and the "signapk.jar" into the "Signapk" folder.
  9. How to Edit APK Files Picture 24How to Edit APK Files Picture 24
    Navigate to the "Signapk" folder in the command prompt. 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.
    1. If you created the Signapk folder on your desktop, the full path is most likely "C:usersusernamedesktopSignapk>"
  10. How to Edit APK Files Picture 25How to Edit APK Files Picture 25
    Type java -jar signapk.jar certificate.pem key.pk8 [apkfilename].apk [apkfilename]-signed.apk in the command prompt. 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.[2]
    1. 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.
4.3 ★ | 3 Vote