Skip to content

Commit f5cbc50

Browse files
committed
Updating Fabric for Android to latest version
1 parent 93dc1e5 commit f5cbc50

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

src/android/build-extras.gradle

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11

22
def packageName = getPackageName()
33

4+
buildscript {
5+
repositories {
6+
maven { url 'https://maven.fabric.io/public' }
7+
}
8+
9+
dependencies {
10+
classpath 'io.fabric.tools:gradle:1.+'
11+
}
12+
}
13+
414
android {
515
defaultConfig {
616
applicationId packageName
@@ -12,7 +22,9 @@ repositories {
1222
}
1323

1424
dependencies {
15-
compile 'com.crashlytics.sdk.android:crashlytics:2.5.5'
25+
compile('com.crashlytics.sdk.android:crashlytics:2.6.6@aar') {
26+
transitive = true;
27+
}
1628
}
1729

1830
def getPackageName() {

0 commit comments

Comments
 (0)