我使用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...
我错过了什么吗?
答案 0 :(得分:17)
默认输出目录为dist/name.apk
。因此,在您的情况下,输出应该在CP/dist/OP.apk
。
您可以使用-o,--output <dir>
选项指定另一个输出路径。
此外,test.apk
是多余的,将被忽略。