apktool进行apk 反编译出现input file ()was not found or not readable的解决方法
apktool d -f apk文件 -o 输出绝对路径C:\Users\sakura>apktool d -f "D:\1.apk" -o D:\1
I: Using Apktool 2.2.2 on 1.apk
I: Loading resource table...
I: Decoding AndroidManifest.xml with resources...
I: Regular manifest package...
I: Decoding file-resources...
I: Decoding values */* XMLs...
I: Copying assets and libs...
I: Copying unknown files...
I: Copying original files...
C:\Users\sakura>
源代码修改好后,打包成apk的方法
apktool b D:\1
之后在之前的D:\1文件下便可以发现多了2个文件夹:
build
dist(里面存放着打包出来的APK文件)
官网:https://ibotpeaches.github.io/Apktool/install/
页:
[1]