From e165b826881f371c4dd2f0b791d262d5f715669f Mon Sep 17 00:00:00 2001 From: Windham Wong Date: Sat, 11 Aug 2018 17:10:30 +0800 Subject: [PATCH] Update build.gradle Changing the default version to fetch latest available version online. --- android/build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/android/build.gradle b/android/build.gradle index 8e2d007..b5f66bf 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -3,9 +3,9 @@ apply plugin: 'com.android.library' def DEFAULT_COMPILE_SDK_VERSION = 27 def DEFAULT_BUILD_TOOLS_VERSION = "27.0.3" def DEFAULT_TARGET_SDK_VERSION = 27 -def DEFAULT_GOOGLE_PLAY_SERVICES_VERSION = "12.+" -def DEFAULT_FIREBASE_CORE_VERSION = "12.+" -def DEFAULT_FIREBASE_MESSAGING_VERSION = "12.+" +def DEFAULT_GOOGLE_PLAY_SERVICES_VERSION = "+" +def DEFAULT_FIREBASE_CORE_VERSION = "+" +def DEFAULT_FIREBASE_MESSAGING_VERSION = "+" android { compileSdkVersion project.hasProperty('compileSdkVersion') ? project.compileSdkVersion : DEFAULT_COMPILE_SDK_VERSION -- 2.26.2