Skip to content

Commit

Permalink
Merge pull request #68 from DroidKaigi/add-clashlytics
Browse files Browse the repository at this point in the history
Add Crashlytics
  • Loading branch information
takahirom authored Jan 12, 2018
2 parents 0c39e48 + 2dd3ace commit 69d8b42
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
apply plugin: "org.jlleitschuh.gradle.ktlint"
apply plugin: 'io.fabric'

android {
compileSdkVersion 27
Expand Down Expand Up @@ -115,6 +116,10 @@ dependencies {
// Adjust version for emulator
implementation 'com.google.firebase:firebase-firestore:11.4.2'
implementation 'com.google.firebase:firebase-auth:11.4.2'
implementation 'com.google.firebase:firebase-core:11.4.2'
implementation('com.crashlytics.sdk.android:crashlytics:2.7.1@aar') {
transitive = true
}

// ThreeTenABP for JSR-310 backport
implementation 'com.jakewharton.threetenabp:threetenabp:1.0.5'
Expand Down
2 changes: 2 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,15 @@ buildscript {
google()
jcenter()
maven { url "https://plugins.gradle.org/m2/" }
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.github.ben-manes:gradle-versions-plugin:0.17.0'
classpath 'com.google.gms:google-services:3.1.0'
classpath "gradle.plugin.org.jlleitschuh.gradle:ktlint-gradle:3.0.0"
classpath 'io.fabric.tools:gradle:1.24.4'
}
}

Expand Down

0 comments on commit 69d8b42

Please sign in to comment.