I have integrated the Crashlytics library using these steps(as I have done before without any issue)
- Download plugin from https://fabric.io/onboard/pending
- Install the plugin on Android Studio
- Follow instructions, ie allow the plugin to make changes to build.config, manifest and main activity.
- Build project and run app.
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.