错误:无法使用哈希字符串'android-28'查找目标

5 android synchronization android-studio

当我在build.gradle(Project:Allo)中同步我的项目时,我看到了这个错误

无法找到带有哈希字符串'android-28'in的目标:C:\ Users\hacker\AppData\Local\Android\Sdk

配置:

apply plugin: 'com.google.gms.google-services'
android {
compileSdkVersion 28
defaultConfig {
    applicationId "com.example.android.allo"
    minSdkVersion 19
    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 'com.android.support:appcompat-v7:28.0.0 rc2'
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
implementation 'com.google.firebase:firebase-core:15.0.2'
implementation 'com.google.firebase:firebase-messaging:15.0.2'
implementation 'com.android.support:design:28.0.0 rc2'
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'
}
Run Code Online (Sandbox Code Playgroud)

这就是形象

Int*_*iya 9

Set Up the Android P SDK.

android {
compileSdkVersion 'android-P'

defaultConfig {
    targetSdkVersion 'P'
}
Run Code Online (Sandbox Code Playgroud)

为了获得Android P Preview SDK的最佳开发体验,我们建议您安装最新的Android Studio 3.2 canary.

您应按如下方式安装Android P Preview SDK:

  • 单击工具> SDK管理器.

  • 在SDK平台选项卡中,选择Android P预览.

  • 在SDK工具选项卡中,选择Android SDK Build-Tools 28-rc2(或更高版本).

  • 单击"确定"开始安装.