Skip to content

Instantly share code, notes, and snippets.

@sheerazam
Created September 28, 2016 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sheerazam/c2f9c8da9c0a7b66edf5713be2214629 to your computer and use it in GitHub Desktop.
Save sheerazam/c2f9c8da9c0a7b66edf5713be2214629 to your computer and use it in GitHub Desktop.
CrashLytics Setup
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
}
//Crashlytics
Fabric.with(this, new Crashlytics());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment