Crashlytics says log download is complete but nothing is in the toolbar

05-15 13:50:53.442 28150-28193/app I/CrashlyticsCore: Crashlytics report upload complete: <ID>

However, my toolbar says there are 0 questions, 0 non-living and 0 users.

What is the reason for this?

+6
source share
1 answer

Please make sure you have the Crashlytics SDK as the last line of dependency blocks in your build.gradle application.

dependencies {

    ...

    compile('com.crashlytics.sdk.android:crashlytics:2.8.0@aar') {
        transitive = true;
    }    
}
0
source

Source: https://habr.com/ru/post/1017267/


All Articles