I am getting “Plugin with id 'com.android.application' not found”. I have updated the gradle distribution version in gradle wrapper properties but to no avail. Do I need to write the build gradle dependencies somewhere?
1 Answer
You have to add in your top level file:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.3'
}
}
2 Comments
codely
what and where is this "top level file"?
Gabriele Mariotti
@noypee the top-level file is the build.gradle file that you can find in the root of the project.