Our app is getting quite a few different SecurityException
reports from our crash report software. Here is a stacktrace of the crash:
java.lang.Secu
My guess is that you are running ProGuard on your application but haven't added the following exceptions to your proguard-rules.txt:
-keep public class com.google.android.gms.common.internal.safeparcel.SafeParcelable {
public static final *** NULL;
}
-keepnames @com.google.android.gms.common.annotation.KeepName class *
-keepclassmembernames class * {
@com.google.android.gms.common.annotation.KeepName *;
}
-keepnames class * implements android.os.Parcelable {
public static final ** CREATOR;
}