From 0f55efe05b732416eedb900fe9b368b2513d0951 Mon Sep 17 00:00:00 2001 From: Frieder Bluemle Date: Tue, 4 Feb 2020 15:26:21 -0800 Subject: [PATCH] Update Android Gradle plugin to 3.6.0 --- android/build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 5f9065c5..fe98df8f 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -3,16 +3,16 @@ def safeExtGet(prop, fallback) { } buildscript { + // The Android Gradle plugin is only required when opening the android folder stand-alone. + // This avoids unnecessary downloads and potential conflicts when the library is included as a + // module dependency in an application project. if (project == rootProject) { - // The Android Gradle plugin is only required when opening the android folder stand-alone. - // This avoids unnecessary downloads and potential conflicts when the library is included as a - // module dependency in an application project. repositories { google() jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:3.5.2' + classpath 'com.android.tools.build:gradle:3.6.0' } } }