Hey there,
that might be a noobish question but I get the following error:
* What went wrong:
A problem occurred configuring project ':app'.
> Could not resolve all dependencies for configuration ':app:_debugApk'.
> A problem occurred configuring project ':react-native-keychain'.
> The SDK Build Tools revision (23.0.1) is too low for project ':react-native-keychain'. Minimum required is 25.0.0
app/build.gradle
android {
compileSdkVersion 25
buildToolsVersion "25.0.0"
defaultConfig {
applicationId 'com.blablaapp.app.android'
minSdkVersion 16
targetSdkVersion 22
ndk {
abiFilters "armeabi-v7a", "x86"
}
renderscriptTargetApi 20
renderscriptSupportModeEnabled true
}
...
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:25.0.0'
compile 'com.facebook.react:react-native:+'
// From node_modules
compile project(':react-native-background-timer')
compile project(':react-native-i18n')
compile project(':react-native-keychain')
compile project(':react-native-navigation')
compile project(':react-native-vector-icons')
compile project(':react-native-orientation')
compile project(':react-native-linear-gradient')
compile project(':bugsnag-react-native')
compile project(':react-native-blur')
compile project(':react-native-picker')
compile project(':react-native-svg')
compile project(':react-native-wheel-picker')
compile project(':react-native-code-push')
compile project(':instabug-reactnative')
compile project(':react-native-maps')
compile project(':react-native-firebase')
}
Any ideas what might have went wrong?
Thank you!
Hey there,
that might be a noobish question but I get the following error:
app/build.gradle
Any ideas what might have went wrong?
Thank you!