问题
How to use com.esri.arcgis.android:arcgis-android:10.2.6-2 with proguard enabled? I am trying
-keep class com.esri.** { *; } -keep interface com.esri.** { *; }
but it is not helping.
回答1:
Finally I found the working answer for it, and included this to my proguard rule file.
-keep class com.esri.** { *; } -keep interface com.esri.** { *; } -keep class org.codehaus.jackson.** { *; } -dontwarn org.codehaus.jackson.map.ext.** -dontwarn jcifs.http.**
worked for me.
来源:https://stackoverflow.com/questions/34787925/com-esri-arcgis-androidarcgis-android10-2-6-2-with-proguard