Asha
Results
1
issues of
Asha
#### 问题详细描述 Detailed description of the problem 引入混淆过的第三方jar,第三方jar中的类名大小都存在时,可能导致插件化处理后类丢失 例如三方jar中存在`A.class`, `a.class`,插件化方案可能对大小写不敏感,或者编译的操作系统对大小写不敏感,导致输出的apk丢失部分类,造成`ClassNotFound` #### 复现问题步骤 Steps to reproduce the problem 1. 混淆开启R8混淆 2. proguard配置`-repackageclasses`,此时输出的jar就大小写都存在了 3. 将输出的jar引入工程中,使用插件化方案生成apk 4. 运行时崩溃`ClassNotFound` #### 其它重要信息 Other important information...