Reputation: 378
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.
Upvotes: 3
Views: 381
Reputation: 378
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.
Upvotes: 2