Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Crashlytics issue when updated from com.crashlytics.sdk.android:crashlytics:2.9.8 to 2.9.9

During update of my android app, i updated all dependencies. When i tested the release build, i receive the following error:

E/CrashlyticsCore: The Crashlytics build ID is missing. This occurs when Crashlytics tooling is absent from your app's build configuration. Please review Crashlytics onboarding instructions and ensure you have a valid Crashlytics account.

Crashlytics is working fine for my previous release that is currently available on the play store.

Any help will be appreciated.

like image 969
wj07 Avatar asked Feb 13 '19 16:02

wj07


1 Answers

It is fixed in the latest version, you can update your version with 1.28.0.

buildscript {
  // ... repositories, etc. ...

   dependencies {
       // ...other dependencies ...
       classpath 'io.fabric.tools:gradle:1.28.0'
   }
}
like image 136
Masum Avatar answered Nov 15 '22 18:11

Masum