react-native-navigation-v2
react-native-navigation-v2 copied to clipboard
:amazon-cognito-identity-js
Build failing with the following error:
A problem occurred configuring project ':amazon-cognito-identity-js'.
The SDK Build Tools revision (23.0.1) is too low for project ':amazon-cognito-identity-js'. Minimum required is 25.0.0
Reference: https://github.com/oblador/react-native-vector-icons/issues/428
Copied this in build.gradle
subprojects {
afterEvaluate {project ->
if (project.hasProperty("android")) {
android {
compileSdkVersion 26
buildToolsVersion '26.0.3'
}
}
}
}```