找不到包含路径的平台SDK:平台; android-P

时间:2018-07-05 04:51:36

标签: java android android-gradle android-9.0-pie

错误:失败:构建失败并出现异常。

  • 出了什么问题: 配置项目':app'时发生问题。
  

无法找到路径为:platform; android-P

的Platform SDK。
apply plugin: 'com.android.application'

    android {
        compileSdkVersion 'android-P'
        defaultConfig {
            applicationId "com.google.codelabs.mdc.java.shrine"
            minSdkVersion 15
            targetSdkVersion 28
            versionCode 1
            versionName "1.0"
            testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
            vectorDrawables.useSupportLibrary = true
        }
        buildTypes {
            release {
                minifyEnabled false
                proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
            }
        }
     }

    dependencies {
        api 'com.android.support:design:28.0.0-alpha1'
        implementation 'com.android.support:support-v4:28.0.0-alpha1'
        implementation 'com.android.volley:volley:1.1.0'
        implementation 'com.google.code.gson:gson:2.8.2'
        testImplementation 'junit:junit:4.12'
        androidTestImplementation 'com.android.support.test:runner:1.0.1'
        androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
    }

4 个答案:

答案 0 :(得分:4)

第1步:在Android Studio中打开“偏好设置”或“设置”。选择Android SDK选项,然后如下所示安装Android API 28。

install

第2步:compileSdkVersion存在问题,因为您必须将其从“ android-P”更改为28。

compileSdkVersion 28

并构建项目。就是这样。

答案 1 :(得分:2)

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

android {
    compileSdkVersion 28

    defaultConfig {
        targetSdkVersion 28
    }
    ...
}

Set Up the Android P SDK

答案 2 :(得分:1)

无法找到路径为:platforms; android-R

的Platform SDK

将此代码放在android/build.gradle的末尾??

subprojects {
    project.buildDir = "${rootProject.buildDir}/${project.name}"

    project.evaluationDependsOn(':app')

    afterEvaluate {project ->
        if (project.hasProperty("android") && project.property("android").compileSdkVersion.equals("android-R")) {
            android {
                compileSdkVersion 30
            }
        }
    }
}

答案 3 :(得分:1)

问题:未能找到路径为:platform; android-27

的Platform SDK。

解决方案:

  • 只需将compileSdkVersion更改为30,然后将targetSdkVersion更改为30,然后单击“同步”即可。系统将下载一些文件并完成。 (您要为此连接互联网)
android {
 compileSdkVersion 30
 defaultConfig {
       targetSdkVersion 30
 }
 ...
}