Android studio plugin does not find installed Crashlytics

428 Views Asked by At

I am using version 2.3.2 (the latest at this point) and I'm facing the following issue - when I initialize crashlytics inside the Application class, the plugin is not resolving the instalation. It asks me to make code changes and add the initialization logic to the entry point Activity.

The thing that bothers me is which is the right way. The cannonball app has the initialization in its application class. On the other hand it looks like the plugin expects it to be in the Activity. Here is how it looks on the cannonball app:

public class App extends Application {
...
    @Override 
    public void onCreate() { 
    ...
        Fabric.with(this, new Crashlytics(), new Twitter(authConfig), new MoPub());
    }
}

Where as in my app the android studio plugin suggests that it should go to

public class Splash extends ActionBarActivity {
...
    @Override 
    protected void onCreate(Bundle savedInstanceState) {
        Fabric.with(this, new Crashlytics(), new Twitter(authConfig), new MoPub());
    ...
    }
}
2

There are 2 best solutions below

0
On BEST ANSWER

I think the plugin places it in whatever your main activity is by default. I just removed it and placed the following lines in my Application class:

CrashlyticsCore core = new CrashlyticsCore.Builder().disabled(BuildConfig.DEBUG).build();
Fabric.with(this, new Crashlytics.Builder().core(core).build());

You can remove the ".disabled(BuildConfig.DEBUG)" if you want to. That just disables the plugin if you're in debug mode.

1
On

You must include

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

under dependency in your app build.gradle file