We have added crashlytics in our android, and we use proguard . So, as the crashlytics documentation crashlytics , we added the following code to 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?
Thank you in advance
source share