由于“无法解决依赖关系”错误,导致Gradle同步失败

时间:2019-10-06 21:21:58

标签: android android-studio google-play-services

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

我已经尝试过的:

  • 按照我的建议,将我的sourceCompatibility和targetCompatibility从1.7更新为JavaVersion.VERSION_1_8
  • 删除了.idea文件夹
  • 删除了google-services插件,.gradle(应用程序)中的实现'com.google.android.gms:play-services-auth:17.0.0'和.gradle(项目)中的google services类路径->错误仍然发生
  • 当我将项目文件中的google-services类路径更新为最新版本4.3.2时,会出现此错误
  • 删除了google-services.json并下载了一个新的
Could not resolve com.google.gms:google-services:4.3.2.
...
Remote host closed connection during handshake
  • 我使缓存/重启无效
  • 在SDK管理器中,Android SDK显示为已部分安装->单击显示软件包详细信息->无需安装,一切都显示为已安装
  • 在misc.xml文件中,语言级别已从JDK 1_7更新为1_8

这也许是我现在正面临的一个问题,可能是这个问题的原因:

以前,我已经安装了SDK 29,但是在SDK管理器中显示为“部分安装”,但是当我单击“显示软件包详细信息”时,没有任何安装。我想重新安装Android 10,所以我先删除了它,但是现在我无法再次重新安装它,因为der Android SDK Manager中不再显示它。我在哪里可以找到它?

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

也在“ SDK更新站点”下,“启用”下的“ Android存储库”也出现错误->红色符号,并显示消息“下载清单时出现IO异常”

这是我目前在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


我该如何解决?

2 个答案:

答案 0 :(得分:1)

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

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

    }
}
...

答案 1 :(得分:0)

我刚刚重新启动计算机,它现在可以按预期运行。此外,SDK更新站点下的“ IO异常”不再显示。我认为问题在于,这导致了我发帖中看到的所有错误。我还将系统设置下的HTTP代理更改为“自动检测代理设置”。另外,卡巴斯基的运行方式不正确,因此重新启动后仍可以正常工作,这也可以解决我所描述的问题。

编辑:

该错误已在我设法使其再次起作用的两天后发生,因此上述解决方案可能不是帮助我解决此问题的解决方案。再次遇到此问题后,我再次尝试了上述步骤,但没有任何效果,因此我使缓存无效并重新启动了android studio,它再次为我工作。