From b2f15e2ec05cfcec3479fd3adf0c2d24d3ffe29b Mon Sep 17 00:00:00 2001 From: Vincent Vella Date: Wed, 16 Jan 2019 11:52:52 -0500 Subject: [PATCH] Defaults to the map services version instead of play services (#2653) As of now the googlePlayServicesMapsVersion variable defaults to "DEFAULT_GOOGLE_PLAY_SERVICES_VERSION" which is an unpublished version of maps - 16. 0.1, it needs to default to "DEFAULT_GOOGLE_PLAY_SERVICES_MAPS_VERSION" instead which is 16.0.0 --- lib/android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/android/build.gradle b/lib/android/build.gradle index 306609615d..48966cb921 100644 --- a/lib/android/build.gradle +++ b/lib/android/build.gradle @@ -47,7 +47,7 @@ android { dependencies { def googlePlayServicesVersion = safeExtGet('googlePlayServicesVersion', DEFAULT_GOOGLE_PLAY_SERVICES_VERSION) // Variable lookup order : googlePlayServicesMapsVersion > googlePlayServicesVersion > DEFAULT_GOOGLE_PLAY_SERVICES_MAPS_VERSION - def googlePlayServicesMapsVersion = safeExtGet('googlePlayServicesMapsVersion', safeExtGet('googlePlayServicesVersion', DEFAULT_GOOGLE_PLAY_SERVICES_VERSION)) + def googlePlayServicesMapsVersion = safeExtGet('googlePlayServicesMapsVersion', safeExtGet('googlePlayServicesVersion', DEFAULT_GOOGLE_PLAY_SERVICES_MAPS_VERSION)) def androidMapsUtilsVersion = safeExtGet('androidMapsUtilsVersion', DEFAULT_ANDROID_MAPS_UTILS_VERSION) compileOnly "com.facebook.react:react-native:+"