From 72404ea58e49ff5efa4cbff7bd499811e646ca4c 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.3 --- android/build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 5f9065c5..c23ec515 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.3' } } }