Merge pull request #44 from kevinresol/upgrade-gradle

upgrade gradle
This commit is contained in:
marcelkalveram 2019-10-06 13:14:42 +02:00 committed by GitHub
commit f2f4767802
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,7 +7,6 @@ def safeExtGet(prop, fallback) {
android {
compileSdkVersion safeExtGet('compileSdkVersion', 28)
buildToolsVersion safeExtGet('buildToolsVersion', "28.0.3")
defaultConfig {
minSdkVersion safeExtGet('minSdkVersion', 19)
@ -24,6 +23,6 @@ android {
}
dependencies {
implementation 'com.facebook.react:react-native:+'
implementation "com.facebook.react:react-native:${safeExtGet('reactNativeVersion', '+')}"
}