我使用Apktool在我的PC上反编译,编译和签名APK文件,并且效果很好。现在,我想通过Android应用程序执行相同的操作。
对于PC,我使用Apktool。
- 反编译:C:\ APK \ Apktool \ apktool_2.4.0.jar d -f -o C:\ APK \ Test C:\ MyApk.apk
- 我要进行所有更改
- 编译器:C:\ APK \ Apktool \ apktool_2.4.0.jar b -f -o C:\ newApkFile.apk C:\ APK \ Test
- Sign:C:\ APK \ Resources \ ApkSigner.jar登录-密钥C:\ APK \ Resources \ apkeasytool.pk8 --cert C:\ APK \ Resources \ apkeasytool.pem --out C:\ newApkFile。 apk C:\ newApkFile.apk
在PC上它的词很完美,但是在Android上如何做类似的事情会起作用?