From 62ae795211a15878064254da1d296a029b752a25 Mon Sep 17 00:00:00 2001 From: Manuel Garcia Urreta Date: Sun, 7 Oct 2018 12:02:56 -0700 Subject: [PATCH] Update Android gradle configuration to conform to gradle 4.4 - Update build tools to the latest on 3.1.x series - Update Crashlytics SDK dependency to the latest version --- android/build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 32a8bce..0e85880 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -21,7 +21,7 @@ buildscript { } dependencies { - classpath 'com.android.tools.build:gradle:3.1.2' + classpath 'com.android.tools.build:gradle:3.1.4' } } @@ -56,8 +56,8 @@ repositories { } dependencies { - compileOnly "com.facebook.react:react-native:${safeExtGet('reactNative', '+')}" - compile('com.crashlytics.sdk.android:crashlytics:2.9.2@aar') { + implementation "com.facebook.react:react-native:${safeExtGet('reactNative', '+')}" + implementation("com.crashlytics.sdk.android:crashlytics:2.9.5@aar") { transitive = true; } }