Apk 反编译错误收集

apktool版本太旧导致反编译失败的问题

用 apktool 的一些旧版本进行反编译操作,会反编译不成功,在执行反编译时会出现如下错误

Exception in thread "main" brut.androlib.AndrolibException: Could not decode arsc file

这里写图片描述

这个问题是因为apktool版本过低导致,使用最新版本的 apktool 就可以了
最新版本的下载地址:https://bitbucket.org/iBotPeaches/apktool/downloads

apktool 执行反编译命令出现 “Input file was not found or was not readable” 的问题

这个问题是因为 apktool 升级到 2.0 以上时,使用方式已经被替换

//格式为
apktool d [-s] -f <apkPath> -o <folderPath>

猜你喜欢

转载自blog.csdn.net/qq_34801506/article/details/80569400