Updates the RN version to 0.59.10

This commit is contained in:
Sofiya Tepikin
2019-11-14 17:15:36 +01:00
parent 23ba5115d2
commit 6175738fec
11 changed files with 418 additions and 122 deletions
+10 -11
View File
@@ -5,9 +5,9 @@ buildscript {
jcenter()
google()
}
ext.kotlinVersion = '1.3.0'
ext.kotlinVersion = '1.3.10'
dependencies {
classpath 'com.android.tools.build:gradle:3.3.1'
classpath 'com.android.tools.build:gradle:3.4.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
@@ -43,14 +43,13 @@ ext {
supportLibVersion = "28.0.0"
}
subprojects {project ->
// https://stackoverflow.com/questions/52613089/getting-verifyreleaseresources-error-after-upgrading-react-native
afterEvaluate {
if (project.hasProperty("android")) {
android {
compileSdkVersion compileSdkVersion
buildToolsVersion "$buildToolsVersion"
}
subprojects {
afterEvaluate {project ->
if (project.hasProperty("android")) {
android {
compileSdkVersion 28
buildToolsVersion '28.0.3'
}
}
}
}
}