We have added crashlytics in our android application, and we are using proguard
. So, as the crashlytics
documentation says, we have added the following code in our proguard
configuration file:
-keep class com.crashlytics.** { *; }
-keep class com.crashlytics.android.**
-keepattributes SourceFile,LineNumberTable *Annotation*
Unfortunately, when we sign the APK, we get the following error:
java.io.IOException: proguard.ParseException: Unknown option '*Annotation*'
What are we doing wrong?
Thanks in advance