Android Studio 3.2 Canary 14:以下软件包不可用“软件包ID平台; android-28”

时间:2018-05-17 07:10:57

标签: android android-studio android-studio-3.2

刚安装了新的Android Studio 3.2 Canary 14,使用 clean config 构建新的AndroidX。创建新项目后转到重构 - >重构为AndroidX ,Studio要求将compileSdkVersion升级为 28 。在 build.gradle 中进行升级得到安装缺少的平台工具,然后出现错误:以下包不可用“包ID平台; android-28” SDK Manager表示部分安装了Platform P(没有源代码包)。更新频道设置为Canary,尝试完全重新下载SDK - 没有帮助。使用Mac OS High Sierra 10.13.4

这是 build.gradle

apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "my.app.id"
        minSdkVersion 21
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'com.android.support:appcompat-v7:28.1.1'
    implementation 'com.android.support.constraint:constraint-layout:1.1.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}

这是我的SDK Manager窗口: SDK Manager Screenshot

以下是我的Android Studio构建信息:Update channel and AS build Screenshot

提前感谢您的帮助!

1 个答案:

答案 0 :(得分:3)

要完全测试您的应用与Android P的兼容性并开始使用新API,请打开模块级build.gradle文件并更新compileSdkVersion和targetSdkVersion,如下所示:

android {
    // sdk version 28
    compileSdkVersion 'android-P' 

    defaultConfig {
        targetSdkVersion 'P'
    }
    ...
}

请阅读Set Up the Android P SDK了解更多信息