您的当前位置:首页正文

apktool反编译出错:assets有dex文件导致apk反编译出错

2024-11-08 来源:个人技术集锦

apktool反编译apk出错如下:

Exception in thread "main" org.jf.util.ExceptionWithContext: Encountered small uint that is out of range at offset 0x38

解决方法:

添加–only-main-classes参数即可,示例:

apktool.jar d game.apk --only-main-classes

Top