10

我使用了 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...

我错过了什么吗?

4

1 回答 1

22

默认输出目录是dist/name.apk. 因此,在您的情况下,输出应该在CP/dist/OP.apk.

您可以使用该-o,--output <dir>选项指定另一个输出路径。

此外,test.apk是多余的,将被忽略。

于 2015-03-18T12:01:19.923 回答