最終更新:2021-12-07 (火) 00:18:38 (864d)  

compileSdkVersion
Top / compileSdkVersion

the version of the API the app is compiled against.

build.gradle

android {
    compileSdkVersion 19
    buildToolsVersion "25.0.2"
    defaultConfig {
        applicationId "com.example.test.myapplication"
        minSdkVersion 8
        targetSdkVersion 19
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

関連

AndroidManifest.xml

関連