chariot423
chariot423

Reputation: 1243

How to initialise Crashlytics?

I have integrated the Crashlytics library using these steps(as I have done before without any issue)

But I can not get it to initialise properly. Either I get the error Failed to create app with Crashlytics service.

Or if I extend Application and initialise it in onCreate() using Fabric.with(this, new Crashlytics()) I get Initializing Crashlytics 2.2.2.37 but nothing happens. The plugin and web portal both don't show any progress.

I have tried reinstalling Crashlytics, reinstalling the plugin and cleaning the Project.

My project consists of multiple gradle libraries and a(apart from main) module library; in case that is relevant.

Upvotes: 0

Views: 1387

Answers (2)

chariot423
chariot423

Reputation: 1243

Fixed, Crashlytics wasn't getting internet access because of an adblocker.

Upvotes: 0

Jose Llausas
Jose Llausas

Reputation: 3406

Once you have setup your crashlytics with Fabric.with(this, new Crashlytics()) you can force a crash to test the things with: Crashlytics.getInstance().crash();

Once you have crashed you will start to see the data on the web dashboard.

You can also log custom data by using Crashlytics.getInstance().core.log()

Upvotes: 2

Related Questions