在Android的工作室,我收到写着“套餐不可用”和一个包我需要的是不可用的错误(In Androi

2019-10-30 01:51发布

在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和我有同样的问题。

Answer 1:

你只需要移动到SDK平台8.0。

关于目标和分API它不会改变你的东西,而应用程序仍然会在较旧的Android版本。

只要下载这个文件并解压。

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

从[安卓8.1.0]复制所有文件,并将它们转移到

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


文章来源: In Android studio, I'm getting an error that says “Packages unavailable” and that a package I need is not available