Go to "Project Files" and open the gradle assembly.
You will find something like this
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.3.1'
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
You must add this definition:
ext {
compileSdkVersion = 23
buildToolsVersion = "23.0.1"
targetSdkVersion = 21
}
source
share