7

我可以通过 Android Studio Emulator 使用 API R。我知道我可以直接从 Android Studio 运行,但我仍然想在 Gradle 级别进行设置。

android {
    compileSdkVersion 30
    defaultConfig {
        applicationId "com.example.test"
        minSdkVersion 21
        targetSdkVersion 30
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
4

1 回答 1

14

既然 Android 11(也称为 Android R)SDK 已经发布,那么编译 SDK 版本就很简单了30

android {
    compileSdkVersion 30

    defaultConfig {
        targetSdkVersion 30 // Optional: If you want to target R as well
        // ...
    }
    // ... 
}

不再适用:

在 Android R 处于预览阶段时,编译 SDK 版本为'android-R',目标 SDK 版本为'R'

android {
    compileSdkVersion 'android-R'

    defaultConfig {
        targetSdkVersion 'R' // Optional: If you want to target R as well
        // ...
    }
    // ... 
}
于 2020-02-25T07:32:45.583 回答