Recently, many friends have said that they are not sure how to decompile apk with apktool. Then the editor will explain to you how to decompile apk with apktool. I hope it can help all my friends.
First, download the files required by apktool:
a. apktool1.5.2.tar.bz2
b. apktool-install-windows-r05-ibot.tar.bz2 (windows system)
Unzip the file you just downloaded and place the unzipped file in the C:Windows directory
Start the console, enter apktool, and press Enter to view the common instructions of the apktool tool, as shown in the figure
Create a new folder to store apk and files to be decompressed. Here I create the folder in the D:apk directory and put in the android app package for testing (test.apk)
Console input: apktool d D:apktest.apk D:apktest to decompile
"D:apktest.apk" refers to the location where the apk is stored, and "D:apktest" refers to the location where the decompiled file is stored.
After the decompilation is successful, enter the D: apktest file directory to view the decompiled file.
The above is the operation method of apktool decompiling apk explained by the editor. Friends who are not familiar with it should not miss this article.