I'm working on React Native App using Android Studio. Recently Android Studio ask me to make some updates so i click updated for some plugins ofr the IDE.
Now when i trie to build i got an error :
Caused by: org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed:
My build.grale content :
buildscript {
ext {
buildToolsVersion = "28.0.3"
minSdkVersion = 16
compileSdkVersion = 28
targetSdkVersion = 28
}
repositories {
google()
jcenter()
}
dependencies {
classpath('com.android.tools.build:gradle:3.6.1')
classpath 'com.google.gms:google-services:4.3.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}