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

[求助]回编译微信报错

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

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

[注意]传递专业知识、拓宽行业人脉——看雪讲师团队等你加入!

收藏
免费 0
支持
分享
最新回复 (1)
雪    币: 1
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
2
在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"
2016-10-20 13:37
0
游客
登录 | 注册 方可回帖
返回
//