Skip to content

Commit 65b6189

Browse files
committed
added firebase crashlytics
1 parent 6381656 commit 65b6189

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

app/build.gradle

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
apply plugin: 'com.android.application'
22
apply plugin: 'com.google.firebase.firebase-perf'
3+
apply plugin: 'io.fabric'
34

45
android {
56
compileSdkVersion 26
@@ -43,6 +44,10 @@ dependencies {
4344
compile 'com.android.support.constraint:constraint-layout:1.0.2'
4445
compile 'com.github.QuadFlask:colorpicker:0.0.13'
4546
compile 'com.android.support:cardview-v7:26.1.0'
47+
compile('com.crashlytics.sdk.android:crashlytics:2.7.1@aar') {
48+
transitive = true
49+
}
50+
compile 'com.google.firebase:firebase-core:11.6.2'
4651
testCompile 'junit:junit:4.12'
4752
implementation 'com.android.support:design:26.1.0'
4853
}

build.gradle

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,15 @@ buildscript {
44
repositories {
55
jcenter()
66
google()
7+
maven {
8+
url 'https://maven.fabric.io/public'
9+
}
710
}
811
dependencies {
912
classpath 'com.android.tools.build:gradle:3.0.1'
1013
classpath 'com.google.gms:google-services:3.1.0'
1114
classpath 'com.google.firebase:firebase-plugins:1.1.5'
12-
15+
classpath 'io.fabric.tools:gradle:1.24.4'
1316
// NOTE: Do not place your application dependencies here; they belong
1417
// in the individual module build.gradle files
1518
}
@@ -19,7 +22,11 @@ allprojects {
1922
repositories {
2023
jcenter()
2124
maven {
22-
url 'https://jitpack.io' }
25+
url 'https://jitpack.io'
26+
}
27+
maven {
28+
url 'https://maven.google.com/'
29+
}
2330
google()
2431
}
2532
}

0 commit comments

Comments
 (0)