user2892437
user2892437

Reputation: 1251

How can I find the API level of a project I opened in Android Studio?

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

Answers (1)

Rod_Algonquin
Rod_Algonquin

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

Related Questions