首页
社区
课程
招聘
[求助]回编译微信报错
2016-10-18 23:59 4496

[求助]回编译微信报错

2016-10-18 23:59
4496
error: No resource identifier found for attribute
一堆这样的错误,编译了apktool的源码,发现貌似不是apktool自身的错误?什么原因引起的?

另能否请教下,aapt.exe和apktool.jar在反编译过程中各自的作用,aapt貌似不起作用,但是看到大神有自己编译的过滤关键字的aapt,所以我也懵了。

[培训]《安卓高级研修班(网课)》月薪三万计划,掌 握调试、分析还原ollvm、vmp的方法,定制art虚拟机自动化脱壳的方法

收藏
点赞0
打赏
分享
最新回复 (1)
雪    币: 1
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
心野 2016-10-20 13:37
2
0
在attrs.xml文件中添加
<declare-styleable name="Android">  
        <attr name="btn_visibility" format="string"/>
        <attr name="can_delete" format="boolean"/>
        <attr name="defaultValue" format="boolean"/>
        <attr name="dependency" format="string"/>
        <attr name="empty_wording" format="string"/>
        <attr name="key" format="string"/>
        <attr name="icon" format="reference"/>
        <attr name="layout" format="reference"/>
        <attr name="persistent" format="boolean"/>
          <attr name="summary" format="string"/>
          <attr name="title" format="string"/>
        <attr name="widgetLayout" format="reference"/>
       
</declare-styleable>
<declare-styleable name="mm">  
          <attr name="entryValues" format="reference"/>
        <attr name="entries" format="reference"/>
        <attr name="srcType" format="string"/>
</declare-styleable>

或者把
xmlns:android="http://schemas.android.com/apk/res-auto"
改成
xmlns:android="http://schemas.android.com/apk/res/android"
游客
登录 | 注册 方可回帖
返回