无法在 Android Studio 新项目中解析 com.android.support:appcompat-v7:26.1.0

新手上路,请多包涵

我知道这个问题:

无法解决:com.android.support:cardview-v7:26.0.0 android

无法解析 com.android.support:appcompat-v7:26.1.0 [重复]

我已经阅读了这些文档:

迁移到 Gradle 3.0.0 的 Android 插件

迁移到 Android 8.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 许可协议

阅读 480
2 个回答

最后我通过修改 build.gradle 解决了这个问题,如下所示:

 android {
    compileSdkVersion 26
    buildToolsVersion "26.0.2"

    defaultConfig {
        minSdkVersion 16
        targetSdkVersion 26
    }
}

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'

此外,将现有项目从 2.3 迁移到 3.0.1 以及像这样修改项目 gradle 文件时,我也遇到了同样的问题,我想出了一个可行的解决方案:

build.gradle (模块应用程序)

 android {
    compileSdkVersion 27
    buildToolsVersion "27.0.1"

    defaultConfig {
        applicationId "com.mobaleghan.tablighcalendar"
        minSdkVersion 16
        targetSdkVersion 27
    }

dependencies {
    implementation 'com.android.support:appcompat-v7:25.1.0'
    implementation 'com.android.support:design:25.1.0'
    implementation 'com.android.support:preference-v7:25.1.0'
    implementation 'com.android.support:recyclerview-v7:25.1.0'
    implementation 'com.android.support:support-annotations:25.1.0'
    implementation 'com.android.support:support-v4:25.1.0'
    implementation 'com.android.support:cardview-v7:25.1.0'
    implementation 'com.google.android.apps.dashclock:dashclock-api:2.0.0'
}

顶级 build.gradle

 buildscript {
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.1'
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

原文由 Alex Jolig 发布,翻译遵循 CC BY-SA 3.0 许可协议

这对我有用。在 app/build.gradle 中添加configurations.all

 android {
    configurations.all {
        resolutionStrategy.force 'com.android.support:support-annotations:27.1.1'
    }
}

原文由 Zhentao 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题