Use supportLibVersion from ext.

This commit is contained in:
Dylan Vann 2018-08-23 13:43:27 -04:00
parent 93b59295ce
commit b504131083
2 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
classpath 'com.android.tools.build:gradle:2.3.3'
}
}
@ -53,7 +53,7 @@ repositories {
dependencies {
//noinspection GradleDynamicVersion
compile "com.facebook.react:react-native:${_reactNativeVersion}"
compile "com.android.support:support-v4:${_compileSdkVersion}.+"
compile "com.android.support:support-v4:${safeExtGet('supportLibVersion', '27.1.1')}"
compile("com.github.bumptech.glide:glide:${_glideVersion}") {
exclude group: "com.android.support"
}

View File

@ -47,5 +47,5 @@ ext {
minSdkVersion = 16
compileSdkVersion = 26
targetSdkVersion = 26
supportLibVersion = "26.1.0"
supportLibVersion = "27.1.1"
}