无法解析 com.android.support:design:26.1.0



我已经遇到这个问题很长一段时间了,我的com.android.support:design:26.1.0让我失望了,我不知道该改变什么了。

这些是我的模块gradle文件。

Build.gradle (app)

apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion '26.0.2'
defaultConfig {
applicationId "com.xxx.yyy"
minSdkVersion 16
targetSdkVersion 26
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:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.android.support:design:26.1.0'
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'
compile 'com.android.support:support-v4:26.1.0'
compile 'com.google.android.gms:play-services-vision:9.4.0'
//    compile 'com.android.support:design:26.1.0'
}
//apply plugin: 'com.google.gms.google-services'

项目分级文件

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter({ url "http://jcenter.bintray.com/" })
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
//        classpath 'com.google.gms:google-services:3.2.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter({ url "http://jcenter.bintray.com/" })
maven { url "https://maven.google.com" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}

错误:无法解析 的依赖关系 ":app@releaseUnitTest/编译类路径":无法解析 com.android.support:design:26.1.0.

错误:无法解析依赖项 对于":app@release/编译类路径":无法解析 com.android.support:design:26.1.0.

错误:无法解析依赖项 对于":app@debugUnitTest/编译类路径":无法解析 com.android.support:design:26.1.0.

错误:无法解析依赖项 对于":app@debugAndroidTest/编译类路径":无法解析 com.android.support:design:26.1.0.

错误:无法解析依赖项 对于":app@debug/编译类路径":无法解析 com.android.support:design:26.1.0.

只有"小吃店"功能不起作用,但其余功能似乎很好。

当我将设计更改为 25.1.0 版本时,它可以工作,但它与其他 26.1.0 版本冲突,因此 Android Studio 不推荐它。任何人。。?

我试过把

compile 'com.android.support:design:26.1.0'

而不是实现,它不起作用。当我尝试将整个内容更改为 25.4.0 或任何其他 25 版本时,许多其他内容也无法编译。我已经取消了离线工作,尝试删除/添加 maven 目录,取消注释更多依赖项,将所有内容更改为编译而不是实现,但只是给了我更多错误。

是的,我已经将所有 SDK 更新到最新版本,但我有一种感觉,Gradle 无法从网站下载某些依赖项,这就是我无法再下载任何其他依赖项的原因。(虽然我的离线工作未被选中)

此外,无论上面的代码中未注释的内容如何,都意味着我尝试输入这些行,但它并没有解决问题,或者创造了更多问题。

这是我找到它的方式,请尝试以下操作

Go to File->Settings->Build, Execution, Deployment->Gradle->Uncheck Offline work option.

尝试一次,而不是实现编译设计支持gradle代码

compile 'com.android.support:design:26.1.0'

并删除此

implementation 'com.android.support:design:26.1.0'

我最终意识到的问题是,当我设置 android 代理时,我只设置了 1 个用于 HTTP 的代理,并没有意识到没有设置 HTTPS 代理。

因此,通过设置HTTPS代理解决此问题后,没有更多问题。

相关内容

  • 没有找到相关文章

最新更新