我知道这个问题:
无法解决:com.android.support:cardview-v7:26.0.0 android
无法解析 com.android.support:appcompat-v7:26.1.0 [重复]
我已经阅读了这些文档:
所以我发布这个问题,相信它不是重复的。
我已经安装了 Android Studio 3.0.1。我之前没有任何以前的版本,我开始了一个新项目。
Gradle 文件中的每个设置都是由 Android Studio 本身设置的,我已经全部检查过了。
这些是文件内容:
build.gradle(模块:应用程序)
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
defaultConfig {
applicationId "com.example.administrator.as301test"
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'
}
顶级 build.gradle
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
gradle-wrapper.properties
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
我在存储库中使用 google()
,因为 这里 清楚地说:
// If you're using a version of Gradle lower than 4.1, you must instead use: // maven { // url 'https://maven.google.com' // }
我的 gradle 版本是 4.1,所以我不需要上面的代码。
但我仍然收到这个错误,因为其他人一直在问:
错误:无法解析“:app@debug/compileClasspath”的依赖关系:无法解析com.android.support:appcompat-v7:26.1.0。
为什么我在 AS 3.0.1
中创建一个新项目并且已经设置了所有必要的设置时会出现此错误?
更新
@Rohit 的回答以某种方式解决了这个问题,但对于其他一些依赖项,我仍然遇到同样的错误。
无法解析 com.android.support.test:runner:1.0.1
无法解析 com.android.support.test.espresso:espresso-core:3.0.1
无法解析 junit:junit:4.12
原文由 Alex Jolig 发布,翻译遵循 CC BY-SA 4.0 许可协议
最后我通过修改
build.gradle
解决了这个问题,如下所示:我删除了这些行,因为它们会产生更多错误:
此外,将现有项目从 2.3 迁移到 3.0.1 以及像这样修改项目 gradle 文件时,我也遇到了同样的问题,我想出了一个可行的解决方案:
build.gradle (模块应用程序)
顶级 build.gradle