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

本文共 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://tnwua.baihongyu.com/

你可能感兴趣的文章
类斐波那契数列的奇妙性质
查看>>
配置设置[Django]引入模版之后报错Requested setting TEMPLATE_DEBUG, but settings are not configured....
查看>>
下一步工作分配
查看>>
Response. AppendHeader使用大全及文件下载.net函数使用注意点(转载)
查看>>
Wait Functions
查看>>
代码描述10313 - Pay the Price
查看>>
jQuery最佳实践
查看>>
centos64i386下apache 403没有权限访问。
查看>>
vb sendmessage 详解1
查看>>
jquery用法大全
查看>>
Groonga 3.0.8 发布,全文搜索引擎
查看>>
PC-BSD 9.2 发布,基于 FreeBSD 9.2
查看>>
网卡驱动程序之框架(一)
查看>>
css斜线
查看>>
Windows phone 8 学习笔记(3) 通信
查看>>
重新想象 Windows 8 Store Apps (18) - 绘图: Shape, Path, Stroke, Brush
查看>>
Revit API找到风管穿过的墙(当前文档和链接文档)
查看>>
Scroll Depth – 衡量页面滚动的 Google 分析插件
查看>>
Windows 8.1 应用再出发 - 视图状态的更新
查看>>
自己制作交叉编译工具链
查看>>