dabit3 / react-native-navigation-v2

Up and running with React Native Navigation - V2 - by Wix
74 stars 27 forks source link

:amazon-cognito-identity-js #2

Open deepakaggarwal7 opened 5 years ago

deepakaggarwal7 commented 5 years ago

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

pratik14 commented 5 years ago

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