当前位置: 首页 > 知识库问答 >
问题:

Gradle同步失败:无法解析配置的所有依赖项“:app:debugRuntimeClasspath”

秋和雅
2023-03-14

我最近将我的Android Studio更新为3.0.1版,并启动了一个新项目,其中包含一个空白活动。gradle同步一开始(我一打开项目),我就会在事件日志中收到一条消息

Gradle sync failed: Could not resolve all dependencies for configuration ':app:debugRuntimeClasspath'.
                Could not determine artifacts for com.android.support:appcompat-v7:26.1.0
                Could not get resource 'https://dl.google.com/dl/android/maven2/com/android/support/appcompat-v7/26.1.0/appcompat-v7-26.1.0.aar'.
                Could not HEAD 'https://dl.google.com/dl/android/maven2/com/android/support/appcompat-v7/26.1.0/appcompat-v7-26.1.0.aar'.
                Connect to dl.google.com:443 [dl.google.com/216.58.197.46] failed: Connection refused: connect
                Connection refused: connect
                Consult IDE log for more details (Help | Show Log) (3s 878ms)

我从Android SDK管理器重新安装了支持库,并将maven添加到依赖项中,但迄今为止无法解决该问题。

构建抓取:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

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()
    maven { url "https://maven.google.com" }
    }
}

task clean(type: Delete) {
 delete rootProject.buildDir
}

应用程序级构建梯度:

apply plugin: 'com.android.application'

android {
 compileSdkVersion 26
 defaultConfig {
    applicationId "com.example.vishalbisht.test"
    minSdkVersion 15
    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:design: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'
}

共有3个答案

昌正奇
2023-03-14

最有可能的解决方案如下

>

  • 检查应用程序中的目标版本build.gradle

    SdkVersion 30

    转到SDK管理器,检查您是否拥有与API级别相同的SDK

  • 孙鑫鹏
    2023-03-14

    改变这个

     android {
     compileSdkVersion 26
     defaultConfig {
        applicationId "com.example.vishalbisht.test"
        minSdkVersion 15
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner 
     "android.support.test.runner.AndroidJUnitRunner"
    }
    

     android {
     compileSdkVersion 26
     buildToolsVersion '26.0.1'
     defaultConfig {
        applicationId "com.example.vishalbisht.test"
        minSdkVersion 15
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner 
     "android.support.test.runner.AndroidJUnitRunner"
    }
    

    并使用以下任意一种google()或maven{url“https://maven.google.com“}

    请阅读我之前的答案

    微生俊材
    2023-03-14

    我能够绕过这个问题通过注释以下行在应用程序级别构建-gradle

       androidTestImplementation 'com.android.support.test:runner:1.0.1'
       androidTestImplementation 'com.android.support.test.espresso:espresso-
       core:3.0.1'
    

    然后它开始工作,不确定这是否是一个可接受的解决方案,但据了解,我至少可以运行和编译我的代码。

    同样在Android Studio3.1更新后,我没有面临这个问题。

     类似资料:
    • 当试图同步Gradle时,我得到以下错误: 我已经找过了,我找不到答案。这里有一个类似的问题:React原生android找不到com.android.tools.build:gradle:3.6.3 看看上面,这建议关闭脱机模式,它不是打开的,所以,不幸的是,这不是答案。

    • 我在为ZBarScannerActivityLib库项目从命令行执行gradle build时收到此错误。详细错误消息如下 *配置项目“:ZBARScannerActivityLib”时出现问题。

    • 我似乎无法获得最新版本的构建工具。我怀疑这与Gradle的代理设置有关。我已经很好地看了网上,但仍然不能找到一个解决办法。我用的是2.1级。 SystemProp.http.ProxyHost=代理SystemProp.http.ProxyPort=80 SystemProp.http.ProxyUser=MyUserName SystemProp.http.ProxyPassword=密码 Sy

    • 无法解析com.android.tools.build:gradle:3.6.3。脱机模式下没有com.android.tools.build:gradle:3.6.3的缓存版本 我不想关闭脱机模式,因为这将使第一条错误消息再次返回。 Android Studio 3.6.3 Android Gradle插件版本3.6.3 Gradle版本5.6.4 生成工具版本28.0.3 API 28:And

    • 谁能帮我修一下吗 android:failed无法解析配置的所有依赖项:app:debugRuntimeClasspath未能在C:\Users\MB\AppData\Local\android\Sdk中找到哈希字符串为“1.3.50”的目标 这来自事件日志 20:29 Gradle sync启动20:29 Gradle sync失败:无法解决配置的所有依赖项:app: dedegRuntimeC

    • 我是Android studio的新手,在编译从codecanyon购买的Android项目时,我一直面临这种错误。“我错过了什么”? 无法解决配置的所有依赖项: app: dedegRuntimeClasspath。无法确定io.realm的工件:领域-Android-库-对象-服务器:4.3.1:离线模式下没有可用的缓存版本