怎么设置targetSdkVersion的值
时间: 2023-11-27 14:55:38 浏览: 64
gradle中的 compileSdkVersion minSdkVersion targetSdkVersion
你可以在Android Studio中打开你的项目,然后按照以下步骤设置targetSdkVersion的值:
1. 打开项目中的build.gradle文件(不是根目录下的build.gradle文件)。
2. 找到android节点并在其中添加targetSdkVersion的值。例如:targetSdkVersion 30。
3. 如果你想使用最新的API,请确保在你的SDK Manager中下载了相应的API版本。
下面是一个示例build.gradle文件:
```
apply plugin: 'com.android.application'
android {
compileSdkVersion 30
buildToolsVersion "30.0.3"
defaultConfig {
applicationId "com.example.myapp"
minSdkVersion 21
targetSdkVersion 30 // 设置targetSdkVersion的值为30
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.3.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}
```
阅读全文