react-native-navigation-v2 icon indicating copy to clipboard operation
react-native-navigation-v2 copied to clipboard

:amazon-cognito-identity-js

Open deepakaggarwal7 opened this issue 5 years ago • 1 comments

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

deepakaggarwal7 avatar Nov 08 '18 06:11 deepakaggarwal7

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'
           }
       }
   }
}```

pratik14 avatar Nov 24 '18 14:11 pratik14