Gradle 由于 "Unable to resolve dependency" 错误同步失败

Gradle sync failed due to "Unable to resolve dependency" error

我突然收到这个错误,我不知道如何解决。我已经在这里 Unable to resolve dependency for ':app@debug/compileClasspath': Could not resolve 尝试了所有建议,但对我没有任何帮助。

我已经尝试过的:

Could not resolve com.google.gms:google-services:4.3.2.
...
Remote host closed connection during handshake

这可能也是我现在面临的一个问题,可能是导致此问题的原因:

之前我安装了 SDK 29,但在 SDK 管理器中它显示为 "partially installed",但是当我点击 "Show package details" 时,没有安装任何东西。我想重新安装 Android 10,所以我先删除了它,但现在我无法重新安装它,因为它不再显示在 der Android SDK 管理器中。我在哪里可以再次找到它?

在 SDK 平台下只​​有已安装的 SDK 而不是我可以安装的所有 SDK,这是正确的行为吗?

同样在 "SDK Updates Sites" 下,我在 "Enabled" 下收到 "Android Repository" 的错误 --> 带有消息 "IO exception while downloading manifest"

的红色符号

这是我目前在 Android Studio 中遇到的问题:

ERROR: Unable to resolve dependency for ':app@debug/compileClasspath': Could not resolve com.google.android.gms:play-services-measurement-base:[17.2.0].
Show Details
Affected Modules: app

ERROR: Unable to resolve dependency for ':app@debug/compileClasspath': Could not resolve com.google.android.gms:play-services-measurement-impl:[17.2.0].
Show Details
Affected Modules: app

ERROR: Unable to resolve dependency for ':app@debugUnitTest/compileClasspath': Could not resolve com.google.android.gms:play-services-gass:[18.2.0].
Show Details
Affected Modules: app


...

这是我的 build.gradle(项目):

apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
apply plugin: 'com.google.firebase.firebase-perf'

android {
    compileSdkVersion 29
    buildToolsVersion "29.0.2"
    defaultConfig {
        applicationId "com.example.android.guessit"
        minSdkVersion 21
        targetSdkVersion 29
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility = JavaVersion.VERSION_1_8
        targetCompatibility = JavaVersion.VERSION_1_8
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'com.google.android.material:material:1.1.0-alpha10'
    implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta2'

    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test:runner:1.2.0'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
    implementation 'com.google.android.gms:play-services-auth:17.0.0'

    //Firebase SDKs
    implementation 'com.google.firebase:firebase-core:17.2.0'
    implementation 'com.google.firebase:firebase-auth:19.1.0'
    implementation 'com.google.firebase:firebase-analytics:17.2.0'
    implementation 'com.crashlytics.sdk.android:crashlytics:2.10.1'
    implementation 'com.google.firebase:firebase-ads:18.2.0'
    implementation 'com.google.firebase:firebase-perf:19.0.0'
    implementation 'com.google.firebase:firebase-messaging:20.0.0'

    implementation "androidx.lifecycle:lifecycle-extensions:2.1.0"

    //Glide maybe later add code to proguard
    implementation 'com.github.bumptech.glide:glide:4.9.0'
    annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'

    // Circle ImageView
    implementation 'de.hdodenhof:circleimageview:3.0.1'

    // CardView and GridLayout
    implementation 'androidx.cardview:cardview:1.0.0'
    implementation 'androidx.gridlayout:gridlayout:1.0.0'

    // Facebook SDK and login
    implementation 'com.facebook.android:facebook-login:4.41.0'

    //image downloading and caching library for Android
    implementation 'com.squareup.picasso:picasso:2.71828'
}

apply plugin: 'com.google.gms.google-services'   // Google Play services Gradle plugin


我该如何解决这个问题?

在您的项目 build.gradle 中,将 google() 放在 mavenLocal() 上方,如下所示:

...
allprojects {
    repositories {
        google()
        jcenter()
        mavenLocal()
        maven { url 'https://maven.fabric.io/public' }

    }
}
...

我刚刚重新启动了我的电脑,它现在可以正常工作了。此外,SDK 更新站点下的 "IO exception" 不再显示。我认为问题是这导致了我 post 中看到的所有错误。我还将系统设置下的 HTTP 代理更改为 "Auto-detect proxy settings"。卡巴斯基也没有 运行 以正确的方式所以在重新启动后它再次正常工作,这也可能是我描述的问题的解决方案。

编辑:

错误是在我设法使其再次运行两天后出现的,因此上述解决方案可能无法帮助我解决此问题。再次遇到这个问题后,我再次尝试了上述步骤,但没有任何效果,所以我使缓存无效并重新启动 android 工作室,它再次对我有用。