Created
September 28, 2016 14:06
-
-
Save sheerazam/c2f9c8da9c0a7b66edf5713be2214629 to your computer and use it in GitHub Desktop.
CrashLytics Setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
buildscript { | |
repositories { | |
maven { url 'https://maven.fabric.io/public' } | |
} | |
dependencies { | |
classpath 'io.fabric.tools:gradle:1.21.2' | |
} | |
} | |
apply plugin: 'io.fabric' | |
repositories { | |
maven { url 'https://maven.fabric.io/public' } | |
} | |
// Crashlytics Kit | |
compile('com.crashlytics.sdk.android:crashlytics:2.5.2@aar') { | |
transitive = true | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Crashlytics | |
Fabric.with(this, new Crashlytics()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment