File tree 1 file changed +3
-0
lines changed
1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ apply from: 'gradle-maven-push.gradle'
4
4
def DEFAULT_COMPILE_SDK_VERSION = 27
5
5
def DEFAULT_BUILD_TOOLS_VERSION = " 27.0.3"
6
6
def DEFAULT_TARGET_SDK_VERSION = 27
7
+ def DEFAULT_ANDROID_SUPPORT_LIB_VERSION = " 27.0.2"
7
8
def DEFAULT_GOOGLE_PLAY_SERVICES_VERSION = " 16.0.1"
8
9
def DEFAULT_GOOGLE_PLAY_SERVICES_MAPS_VERSION = " 16.0.0"
9
10
def DEFAULT_ANDROID_MAPS_UTILS_VERSION = " 0.5+"
@@ -45,12 +46,14 @@ android {
45
46
}
46
47
47
48
dependencies {
49
+ def supportLibVersion = safeExtGet(' supportLibVersion' , DEFAULT_ANDROID_SUPPORT_LIB_VERSION )
48
50
def googlePlayServicesVersion = safeExtGet(' googlePlayServicesVersion' , DEFAULT_GOOGLE_PLAY_SERVICES_VERSION )
49
51
// Variable lookup order : googlePlayServicesMapsVersion > googlePlayServicesVersion > DEFAULT_GOOGLE_PLAY_SERVICES_MAPS_VERSION
50
52
def googlePlayServicesMapsVersion = safeExtGet(' googlePlayServicesMapsVersion' , safeExtGet(' googlePlayServicesVersion' , DEFAULT_GOOGLE_PLAY_SERVICES_MAPS_VERSION ))
51
53
def androidMapsUtilsVersion = safeExtGet(' androidMapsUtilsVersion' , DEFAULT_ANDROID_MAPS_UTILS_VERSION )
52
54
53
55
compileOnly " com.facebook.react:react-native:+"
56
+ implementation " com.android.support:appcompat-v7:$supportLibVersion "
54
57
implementation " com.google.android.gms:play-services-base:$googlePlayServicesVersion "
55
58
implementation " com.google.android.gms:play-services-maps:$googlePlayServicesMapsVersion "
56
59
implementation " com.google.maps.android:android-maps-utils:$androidMapsUtilsVersion "
You can’t perform that action at this time.
0 commit comments