There is a problem if the release maked with obfuscator
release {
minifyEnabled true
...
}
Then in this case ArcGIS crashes.
How to do release with an obfuskator?
Solved! Go to Solution.
i use this in my progaurd file
-keep class com.esri.** { *; } -keep interface com.esri.** { *; } -keep class org.codehaus.jackson.** { *; } -dontwarn org.codehaus.jackson.map.ext.** -dontwarn jcifs.http.** -keepattributes *Annotation* -keepattributes SourceFile,LineNumberTable -keep public class * extends java.lang.Exception
i use this in my progaurd file
-keep class com.esri.** { *; } -keep interface com.esri.** { *; } -keep class org.codehaus.jackson.** { *; } -dontwarn org.codehaus.jackson.map.ext.** -dontwarn jcifs.http.** -keepattributes *Annotation* -keepattributes SourceFile,LineNumberTable -keep public class * extends java.lang.Exception
Thank you! This is the right advice.