Reputation: 1251
I'm new to Android Studio.
My SDK package includes a range of API's.
I received a half-completed project.
Upvotes: 3
Views: 11798
Reputation: 26198
It is located in the build.gradle
where you go to the project section by click ALT+1 twice or click 1:project tab in the left corner
and go to Gradle Scripts section and click build.gradle
and check the minSdkVersion
and targetSdkVersion
version of the project
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "com.otd.octranspodestination"
minSdkVersion 15
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
Upvotes: 5