3

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.

priyanka
  • 376
  • 2
  • 10

1 Answers1

2

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.

Community
  • 1
  • 1
priyanka
  • 376
  • 2
  • 10