博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
apkTool反编译apk碰到的问题
阅读量:5767 次
发布时间:2019-06-18

本文共 1284 字,大约阅读时间需要 4 分钟。

在Mac平台上反编译了某个知识付费类的app,用的weex技术。发现反编译不成功

流程如下

  1. 反编译apk java -jar apktool_2.3.0.jar d xxx_1.0.0_beta_offical.apk

  2. 回编译(将修改后的文件重新打包为一个apk) java -jar apktool_2.3.0.jar b xxx_1.0.0_beta_offical

  3. 签名后安装到手机上调试

结果发现在第二步总是不成功,找到https://github.com/iBotPeaches/Apktool/issues/1425 这个issue,发现提到了

Seems you might have an outdated framework. Make sure to run apktool empty-framework-dir --force to refresh those.复制代码

完整的回答如下

➜  Bug1425 apktool d app-debug.apk I: Using Apktool 2.2.2 on app-debug.apkI: Loading resource table...I: Decoding AndroidManifest.xml with resources...I: Loading resource table from file: /home/ibotpeaches/.local/share/apktool/framework/1.apkI: Regular manifest package...I: Decoding file-resources...I: Decoding values */* XMLs...I: Baksmaling classes.dex...I: Copying assets and libs...I: Copying unknown files...I: Copying original files...➜  Bug1425 apktool b app-debugI: Using Apktool 2.2.2I: Checking whether sources has changed...I: Smaling smali folder into classes.dex...I: Checking whether resources has changed...I: Building resources...I: Building apk file...I: Copying unknown files/dir...➜  Bug1425 复制代码

说的是framework过时了,需要在 /home/ibotpeaches/.local/share/apktool目录下(这个目录在执行第一步反编译过程中出现过,那个就是你需要重新执行的目录)重新执行apktool empty-framework-dir --force

之后重新执行这三步,完美解决问题

特地纪录一下

转载地址:http://sbbux.baihongyu.com/

你可能感兴趣的文章
实时编辑
查看>>
KVO原理分析及使用进阶
查看>>
【348天】每日项目总结系列086(2018.01.19)
查看>>
【JS基础】初谈JS现有的数据类型
查看>>
【294天】我爱刷题系列053(2017.11.26)
查看>>
Microsoft发布了Azure Bot Service和LUIS的GA版
查看>>
Google发布Puppeteer 1.0
查看>>
.NET开源现状
查看>>
可替换元素和非可替换元素
查看>>
2016/08/25 The Secret Assumption of Agile
查看>>
(Portal 开发读书笔记)Portlet间交互-PortletSession
查看>>
搭建vsftpd服务器,使用匿名账户登入
查看>>
AMD改善Linux驱动,支持动态电源管理
查看>>
JAVA中循环删除list中元素的方法总结
查看>>
Java虚拟机管理的内存运行时数据区域解释
查看>>
人人都会深度学习之Tensorflow基础快速入门
查看>>
ChPlayer播放器的使用
查看>>
js 经过修改改良的全浏览器支持的软键盘,随机排列
查看>>
Mysql读写分离
查看>>
Oracle 备份与恢复学习笔记(5_1)
查看>>