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

后端 未结 2 1556
执念已碎
执念已碎 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:30

    Possibly you need to :

    -keep class org.apache.http.**

    -keep interface org.apache.http.**

    That is assuming of course ProGuard is complaining about the apache classes. Admittedly I am guessing somewhat as I'm no expert on ProGuard.

提交回复
热议问题