Crashlytics doesn't check if it's configured in the app.

I installed the latest Android Studio plugin and restarted Android Studio and followed the setup steps with the Crashlytics icon that appeared in the toolbar. Everything works fine until a screen appears that tells me "Run the application!" I run the app (I ran in RUN and DEBUG on a real device, emulator and genymotion simulator) but Crashlytics doesn't find it configured and just stays there. See screenshot below for which screen I mean. Any help would be greatly appreciated.

Thank.

enter image description here

+3


source to share


4 answers


It seems the Android plugin for Crashlytics is trying to add the following line for you to the main app activity, but it doesn't show an error if it is unable.

Crashlytics.start(this);

      



Adding a line to the main activity allows Crashlytics to validate the application.

+2


source


This happened to me on linux in Android Studio, and ok ... shutdown and shutdown again. In the last step where it says:

Once launched, we'll check that Crashlytics is configured for your application.



The back button should have been disabled while Fabric was confirmed. This didn't happen for me until I turned off the computer and turned it back on.

0


source


Check:

 buildTypes {
        debug {
            **ext.enableCrashlytics = true**
        }

        release {
            **ext.enableCrashlytics = true**

        }
    }

      

0


source


Another possible reason: the application has been removed from the same org. One job is to attach the app to a different organization (with a different ApiKey). I don't know how to uninstall the uninstall of the application (or is it possible).

-1


source







All Articles