我使用了apktool 2.0.0 rc4版本和解包的CP.apk文件,然后修改了一个文件,并尝试使用“apktool b CP test.apk”命令重新打包
输出如下所示,但是工作目录中没有test.apk。
...\apktool>apktool b CP test.apk
I: Using Apktool 2.0.0-RC3 on CP
I: Checking whether sources has changed...
I: Smaling smali folder into classes.dex...
I: Checking whether resources has changed...
I: Copying raw resources...
I: Building apk file...
I: Copying unknown files/dir...我错过了什么吗?
发布于 2015-03-18 20:01:20
默认输出目录为dist/name.apk。因此,在您的例子中,输出应该是CP/dist/OP.apk格式的。
您可以使用-o,--output <dir>选项指定另一个输出路径。
此外,test.apk是冗余的,将被忽略。
https://stackoverflow.com/questions/29121339
复制相似问题