I am having an issue that I have three API levels downloaded 20,21 and 23. Whenever I create a new project ,API 23 will automatically be selected but I want API 20 project.
If I make changes in build.gradle
file , like
android {
compileSdkVersion 20 // previously 23
buildToolsVersion "20.0.0"
defaultConfig {
applicationId "com.abc.xyz"
minSdkVersion 15
targetSdkVersion 20// previously 23
versionCode 1
versionName "1.0"
}
it starts giving me numerous errors which are obvious but I'm unable to resolve them easily
My problem is why I can't start a new fresh API 20 project, as I don't need this for API 23.
Do I need to put different APIs in different directories?or there is any other way to achieve this