android – 忽略外部库的proguard配置

前端之家收集整理的这篇文章主要介绍了android – 忽略外部库的proguard配置前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
所以,我想在我的项目中添加一个外部库.图书馆本身很小,大约有300种方法.但它配置为非常自由的,它的proguard配置.我在一个准系统项目上运行了一个带/不带库和/无proguard的简单测试,这就是我想出来的
  1. Proguard Lib Method Count
  2. N N 15631
  3. Y N 6370
  4. N Y 15945
  5. Y Y 15573

如您所见,启用proguard后,计数为~6000.但是当我添加lib时,尽管库本身只有大约300种方法,但计数却达到了大约15000.

所以我的问题是,如何忽略这个特定库的proguard配置?

更新:

现在无法使用android gradle插件.我发现android bug没有优先权.请避免提及“不可能”的答案,并在可能的解决方法或官方决定之前保持问题.否则,你将收集一半的赏金而不增加价值.谢谢!

解决方法

@H_301_15@ 在这种特定情况下,您有几个选择:

>从aar中提取classes.jar文件,并将其作为普通jar依赖项包含在项目中(当aar包含资源时不起作用)
>更改aar并从中删除使用者proguard规则
>使用DexGuard可以过滤掉不需要的消费者规则
>做一些gradle hacking,见下文

将以下内容添加到build.gradle:

  1. afterEvaluate {
  2. // All proguard tasks shall depend on our filter task
  3. def proguardTasks = tasks.findAll { task ->
  4. task.name.startsWith('transformClassesAndResourcesWithProguardFor') }
  5. proguardTasks.each { task -> task.dependsOn filterConsumerRules }
  6. }
  7.  
  8. // Let's define our custom task that filters some unwanted
  9. // consumer proguard rules
  10. task(filterConsumerRules) << {
  11. // Collect all consumer rules first
  12. FileTree allConsumerRules = fileTree(dir: 'build/intermediates/exploded-aar',include: '**/proguard.txt')
  13.  
  14. // Now filter the ones we want to exclude:
  15. // Change it to fit your needs,replace library with
  16. // the name of the aar you want to filter.
  17. FileTree excludeRules = allConsumerRules.matching {
  18. include '**/library/**'
  19. }
  20.  
  21. // Print some info and delete the file,so ProGuard
  22. // does not pick it up. We could also just rename it.
  23. excludeRules.each { File file ->
  24. println 'Deleting ProGuard consumer rule ' + file
  25. file.delete()
  26. }
  27. }

使用DexGuard(7.2.02)时,您可以将以下代码添加到build.gradle:

  1. dexguard {
  2. // Replace library with the name of the aar you want to filter
  3. // The ** at the end will include every other rule.
  4. consumerRuleFilter '!**/library/**,**'
  5. }

请注意,逻辑与上面的ProGuard示例相反,consumerRuleFilter将仅包含与模式匹配的消费者规则.

猜你在找的Android相关文章