Android proguard issues for release

*爱你&永不变心* 提交于 2019-12-01 18:03:12

inspect the jars , creating a packages list in libs you are using.

Then try adding following for those packages in the list in your proguard config file:

-dontwarn org.codehaus.jackson.**

...

-keep        class org.codehaus.jackson.** { *; }

Your libraries contain duplicates of the android.http classes, which are already present in the Android runtime. This may cause conflicts. You should remove the duplicate libraries from your project.

See the ProGuard manual > Troubleshooting > Warning: library class ... depends on program class ...

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!