I am facing gradle error when I build a project (simple helloworld app) in android studio 2.3.3. I have attached here screen shot that describes error messages I am facing. Please help me how to get rid of it?
NOTE -Please tell me which code files are to be added to get rid of this type of error.
My build.gradle:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.1'
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}