在Android工作室中,我收到一条错误消息“套餐不可用”,并且我需要的软件包不可用

时间:2018-04-18 16:34:24

标签: android android-studio gradle

在Android Studio中,

我收到有关构建应用的错误消息。

Error:Failed to find Build Tools revision 26.1.0
<a href="install.build.tools">Install Build Tools 26.1.0 and sync project</a>

这导致蓝色安装链接,但是当我点击它时,我收到一个错误,告诉我“包不可用”和“包不可用。”

这是我的build.gradle的样子

apply plugin: 'com.android.application'

android {
compileSdkVersion 26
lintOptions {
    abortOnError false
}
defaultConfig {
    applicationId "com.example.leoconnelly.connexus"
    minSdkVersion 23
    targetSdkVersion 26
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    buildToolsVersion '26.1.0'

}
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:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.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'
implementation 'com.android.support:design:26.1.0'
compile 'com.squareup.picasso:picasso:2.5.2'

//Helpshift
// use version 26.1.0 instead of 26.0.2
implementation 'com.android.support:design:26.1.0'
implementation 'com.android.support:recyclerview-v7:26.1.0'
implementation 'com.android.support:cardview-v7:26.1.0'

implementation('com.helpshift:android-helpshift-en-aar:6.4.2') {
    exclude group: 'com.android.support'
    exclude module: 'design'
    exclude module: 'recyclerview'
    exclude module: 'cardview-v7'

}


}

如何解决此问题?我已经尝试过使用我的SDK管理器了。我发现的所有解决方案都无效。

编辑:我尝试在一个全新的项目上安装26.0.1,我遇到了同样的问题。

1 个答案:

答案 0 :(得分:-1)

您只需迁移到SDK Platform 8.0。

对于目标和min api,它不会改变你的东西,而且应用程序仍然适用于较旧的Android版本。

只需下载此文件并将其解压缩即可。

  

https://dl.google.com/android/repository/build-tools_r26.0.2-windows.zip

复制[android-8.1.0]中的所有文件并将其移至

C:\Users\user\AppData\Local\Android\Sdk\build-tools\26.0.1