Exception in thread "main" brut.androlib.err.UndefinedResObject: resource spec: 0x01030200
Exception in thread "main" brut.androlib.err.UndefinedResObject: resource spec: 0x01030200
反编译时遇到标题中的异常,根据描述,原因是找不到资源文件,最有可能的原因是apk中使用了系统资源。
解决办法如下:
从手机中导出framework-res.apk文件,该文件在/system/framework下面,把这个文件拷到跟apkTool同一个目录下,执行以下语句把资源文件加进来:
- apktool if framework-res.apk
 
此时再执行 apktool d xxx.apk即可。
转自:http://blog.csdn.net/dinglin_87/article/details/11784189
Exception in thread "main" brut.androlib.err.UndefinedResObject: resource spec: 0x01030200的更多相关文章
- Exception in thread "main" brut.androlib.err.UndefinedResObject: resource spec: 0x01030200(转)
		
反编译时遇到标题中的异常,根据描述,原因是找不到资源文件,最有可能的原因是apk中使用了系统资源. 解决办法如下: 从手机中导出framework-res.apk文件,该文件在/system/fram ...
 - Exception in thread "main" brut.androlib.AndrolibException: brut.androlib.AndrolibException: brut.common.BrutException: could not exec command
		
错误如下: Exception in thread "main" brut.androlib.AndrolibException: brut.androlib.AndrolibEx ...
 - Exception in thread "main" brut.androlib.AndrolibException: Could not decode arsc file 	at brut.androlib.res.decoder.ARSCDecoder.decode
		
使用ApkIDE反编译出现如下错误: Exception in thread "main" brut.androlib.AndrolibException: Could not d ...
 - Java 控制台执行带自定义包定义的类,出现“Exception in thread "main" java.lang.NoClassDefFoundError: ConnectSQLServer (wrong name: sine/ConnectSQLServer)”
		
1.先说明一下代码实现:自定义package sine, 源代码保存路径为:E:\JSP\HibernateDemo\HibernateDemoProject\src\sine\ConnectSQLS ...
 - Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/commons/logging/LogFactory
		
学习架构探险,从零开始写Java Web框架时,在学习到springAOP时遇到一个异常: "C:\Program Files\Java\jdk1.7.0_40\bin\java" ...
 - Exception in thread "main" java.lang.NoSuchMethodError: org.objectweb.asm.ClassWriter.<init>(I)V
		
在学习CGlib动态代理时,遇到如下错误: Exception in thread "main" java.lang.NoSuchMethodError: org.objectwe ...
 - GUI学习中错误Exception in thread "main" java.lang.NullPointerException
		
运行时出现错误:Exception in thread "main" java.lang.NullPointerException 该问题多半是由于用到的某个对象只进行了声明,而没 ...
 - 执行打的maven jar包时出现“Exception in thread "main" java.lang.SecurityException: Invalid signature file digest for Manifest main attributes”
		
Exception in thread "main" java.lang.SecurityException: Invalid signature file digest for ...
 - 在运行Hibernate Hello World程序的时候,抛如下错误:  view plain Exception in thread "main" org.hibernate.exception.LockAcquisitionException 解决方法
		
在运行Hibernate Hello World程序的时候,抛如下错误: Exception in thread "main" org.hibernate.exception.Lo ...
 
随机推荐
- linux 内核的链表操作(好文不得不转)
			
以下全部来自于http://www.ibm.com/developerworks/cn/linux/kernel/l-chain/index.html 无任何个人意见. 本文详细分析了 2.6.x 内 ...
 - CentOS下安装Python3.4
			
系统环境:CentOS 7.2 CentOS7安装Python3.4 ,让Python2和3共存 编译需要的一些包: yum -y groupinstall "Development too ...
 - java中List、Map、Set、Collection、Stack、Queue等的使用
			
java中这几个东西是比较常用的,虽然我用的不多,也正是因为用的不多,所以我一直搞不清楚他们之间的具体用法以及相互之间的关系,现在特单独作为一个东西来总结一下. 本文参考一下资料: 1.<jav ...
 - Azure disk iops的测试
			
在Public Cloud中,VM.Storage和Network是IaaS的三大基础.本文将介绍在Azure的VM上测试磁盘IOPS的工具和方法. 一.添加磁盘.初始化磁盘 1.添加磁盘 把相应的信 ...
 - bmp图片格式及读取
			
C++读取bmp图片的例子 #include <windows.h> #include <stdio.h> #include <stdlib.h> #include ...
 - Hudson和Jenkins的关系
			
Jenkins is an open source continuous integration tool written in Java. The project was forked from H ...
 - Java-API:java.io百科
			
ylbtech-Java-API:java.io百科 Java的核心库java.io提供了全面的IO接口.包括:文件读写.标准设备输出等.Java中IO是以流为基础进行输入输出的,所有数据被串行化写入 ...
 - Oracle 11g R2(11.2.0.4) RAC  数据文件路径错误解决--ORA-01157 ORA-01110: 数据文件
			
Oracle 11g R2(11.2.0.1) RAC 数据文件路径错误解决--ORA-01157 ORA-01110: 数据文件 oracle 11g R2(11.2.0.4) rac--scan ...
 - SqlServer——用户自定义函数
			
在SQL Server中,用户不仅可以使用标准的内置函数,也可以使用自己定义的函数来实现一些特殊的功能.可以使用CREATE FUNCTION 语句创建.在创建时需要注意:函数名在数据库中必须唯一, ...
 - C获取当前时间
			
#include <stdio.h> #include <time.h> #include <string> #include <windows.h> ...