ProGuard error can't find superclass or interface org.apache.http.entity

后端 未结 2 1580
执念已碎
执念已碎 2020-12-29 05:16

I get always with ProGuard following error:

[2012-05-19 17:50:13 - xxx] Warning: there were 13 unresolved references to      program class members.
[2012-05-         


        
2条回答
  •  孤独总比滥情好
    2020-12-29 05:49

    The problem exists if you have added "ActionBarSherlock" and "DropBox" jars to your project. To solve the problem, add the below line to your proguard-project.txt file:

    -dontwarn org.apache.**
    

    The warning will be ignored and it will work because each of the jars alone are working. So I think, this will be the bug in ProGuard, if both are added.

提交回复
热议问题