Install crashlytics without fabric?

The fabric adds 1k of its own methods without using a twitter or mopub set.

I just want to use crashlytics without extracting it from the repository tags.

How can i do this?

Is it possible to point me to crashlytics only maven / gradle repos?

+7
android gradle dex crashlytics fabric-twitter
source share
1 answer

Using sets is optional, you can decide what to use in the gradle section of dependencies. If you want to use only Crashlytics, you can simply remove the other dependencies:

Before

dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile('com.twitter.sdk.android:twitter: 1.0.1@aar ') { transitive = true } compile('com.mopub.sdk.android:mopub: 3.2.2@aar ') { transitive = true; } compile('com.crashlytics.sdk.android:crashlytics: 2.0.1@aar ') { transitive = true; } } 

After

 dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile('com.crashlytics.sdk.android:crashlytics: 2.0.1@aar ') { transitive = true; } } 

Before upgrading, make sure you clear the project.

+1
source share

All Articles