Add thing to build.gradle so release works

This commit is contained in:
Julia Friesel
2019-01-16 19:48:23 +01:00
parent b9636574fc
commit 5c925ea762
+10 -1
View File
@@ -42,4 +42,13 @@ subprojects {project ->
maven { url = 'https://dl.bintray.com/android/android-tools/' }
}
}
}
// https://stackoverflow.com/questions/52613089/getting-verifyreleaseresources-error-after-upgrading-react-native
afterEvaluate {
if (project.hasProperty("android")) {
android {
compileSdkVersion 27
buildToolsVersion "27.0.3"
}
}
}
}