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

android项目在…'应用程序“一个已解决的Google Play服务库依赖依赖于另一个精确版本

尤夕
2023-03-14

我有一个应用程序运行良好,但今天它在构建项目时出现了错误。我花了一整天的时间,尝试了太多来自stack的解决方案。什么都没用。

我有以下应用程序-

apply plugin: 'com.android.application'
apply plugin: 'io.fabric'

android {
    compileSdkVersion 29
    defaultConfig {
        applicationId "com.myapp.immuno"
        minSdkVersion 16
        targetSdkVersion 29
        versionCode 1
        versionName "2.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
        multiDexEnabled true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
            aaptOptions.cruncherEnabled = false // here
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'com.google.android.material:material:1.0.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    implementation 'androidx.navigation:navigation-fragment:2.1.0'
    implementation 'androidx.navigation:navigation-ui:2.1.0'
    implementation 'androidx.lifecycle:lifecycle-extensions:2.1.0'
    implementation 'androidx.legacy:legacy-support-v4:1.0.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test:runner:1.2.0'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'

    implementation 'com.google.code.gson:gson:2.8.5'

    // Firebase libraries
    implementation 'com.google.firebase:firebase-core:17.2.1'
    implementation 'com.google.firebase:firebase-messaging:20.1.0'
    implementation 'com.google.firebase:firebase-analytics:17.2.1'
    implementation 'com.google.android.gms:play-services-auth:17.0.0'
    implementation 'com.google.firebase:firebase-auth:19.2.0'
    implementation 'com.google.firebase:firebase-crash:16.2.1'
    implementation 'com.google.firebase:firebase-database:19.2.0'
    implementation 'com.google.firebase:firebase-storage:19.1.0'

    // circular image
    implementation 'de.hdodenhof:circleimageview:2.2.0'

    // RecyclerView
    //noinspection GradleCompatible
    implementation 'com.android.support:recyclerview-v7:28.0.0'
    //FacebookSdk
    //implementation 'com.facebook.android:facebook-android-sdk:4.37.0'
    //implementation 'com.facebook.android:facebook-login:4.37.0'

    // volley library
    implementation 'com.android.volley:volley:1.1.1'

    implementation 'com.google.android.gms:play-services:17.0.0'
    implementation 'me.dm7.barcodescanner:zxing:1.9.8'

    // Glide library to load images smoothly
    implementation 'com.github.bumptech.glide:glide:4.8.0'
    annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'

    // To get date and time
    implementation 'net.danlew:android.joda:2.10.1.1'

    // external libraries for mail
    implementation files('libs/activation.jar')
    implementation files('libs/additionnal.jar')
    implementation files('libs/mail.jar')

    // Add the Fabric Crashlytics plugin.
    //classpath 'io.fabric.tools:gradle:1.31.2'
    // Add the Firebase Crashlytics dependency.
    implementation 'com.crashlytics.sdk.android:crashlytics:2.10.1'


    }

    apply plugin: 'com.google.gms.google-services'
`

build.gradle是

buildscript {
    repositories {
        google()
        jcenter()
        maven { url 'https://maven.fabric.io/public' }
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.5.3'
        classpath 'com.google.gms:google-services:4.3.3'
        classpath 'io.fabric.tools:gradle:1.31.2'
        // 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
}

在建筑项目上,我遇到了这个错误

错误:在项目“app”中,已解析的Google Play services库依赖于另一个精确版本(例如“[20.0.2]”),但未解析为该版本。库显示的行为未知。

依赖项失败:com.google.firebase:firebase消息:20.1.0-

The following dependencies are project dependencies that are direct or have transitive dependencies that lead to the art
ifact with the issue.
-- Project 'app' depends onto com.google.firebase:firebase-iid@{strictly 19.0.0}
-- Project 'app' depends onto com.google.firebase:firebase-core@17.2.1
-- Project 'app' depends onto com.google.firebase:firebase-crash@16.2.1
-- Project 'app' depends onto com.google.firebase:firebase-messaging@{strictly 20.1.0}
-- Project 'app' depends onto com.google.firebase:firebase-messaging@20.1.0
-- Project 'app' depends onto com.google.firebase:firebase-crash@{strictly 16.2.1}
-- Project 'app' depends onto com.google.firebase:firebase-analytics@17.2.1
-- Project 'app' depends onto com.google.firebase:firebase-core@{strictly 17.2.1}
-- Project 'app' depends onto com.google.firebase:firebase-analytics@{strictly 17.2.1}
-- Project 'app' depends onto com.google.android.gms:play-services-measurement-api@{strictly 17.2.1}

对于扩展调试信息,请使用从命令行执行Gradle/gradlew--信息:app:assembleDebug以查看工件的依赖路径。此错误消息来自google services Gradle插件,报告问题位于https://github.com/google/play-services-plugins并通过在构建中添加“googleServices{disableVersionCheck=false}”来禁用。gradle文件。

共有3个答案

笪建章
2023-03-14

对我来说,重新启动电脑的老把戏成功了,因为在重新启动Android Studio并清除缓存后,我也遇到了同样的问题。

公西兴业
2023-03-14

尝试以下两个步骤可以解决许多此类问题-

  1. 建造-

干杯...

谢阳成
2023-03-14

以下是我做的步骤和解决的问题:

  1. 我换了com.google.firebase:firebase消息:20.1.0至com.google.firebase:firebase消息:20.0.1
  2. 同步渐变
  3. 和回滚更改(将20.0.1更改为20.1.0)
  4. 如果同步并运行应用程序,您将看到该问题得到解决

我知道这不是正确的方法,但解决了我的问题。任何正确的都应该被替换。

 类似资料:
  • 对于扩展调试信息,从命令行执行Gradle,使用。/gradlew--info:app:assembleDebug查看工件的dep endency路径。此错误消息来自google-services Gradle插件,在https://github.com/google/play-services-plugins上报告问题,并通过向build.Gradle文件添加“GoogleServices{di

  • 当我试图编译我的项目时,我得到了以下错误 错误:在“应用程序”项目中,已解决的Google Play services库依赖项依赖于另一个精确版本(例如“[15.0.1]”),但未解决到该版本。库显示的行为将是未知的。 Build.Gradle(项目) 我得到以下错误 错误:在“应用程序”项目中,已解决的Google Play services库依赖项依赖于另一个精确版本(例如“[15.0.1]”

  • > 嗨,我正在实施Firebase崩溃analytics.when我在我的项目中添加了Firebase sdk,这些错误显示。我被困在这个日志时间,我试图降低实现,但它显示了另一个错误。所以你能解决这个问题me.below添加了构建错误和gradlecode.so可以请解决这个问题。 在org.gradle.api.internal.tasks.execution.CatchExceptionTa

  • 本文向大家介绍gradle 依赖于另一个Gradle项目,包括了gradle 依赖于另一个Gradle项目的使用技巧和注意事项,需要的朋友参考一下 示例 对于多项目gradle构建,有时可能需要依赖构建中的另一个项目。为此,请在项目的依赖项中输入以下内容: ':OtherProject'从目录结构的根引用的项目gradle路径在哪里。 为了':OtherProject'在build.gradle文

  • 这是我在编译android应用程序时遇到的错误。我看了很多关于这个问题的问题,并尝试更新我的SDK,重新打开Android Studio和chane的:,但什么都不起作用,Android Studio仍然抱怨他无法解决这个问题。有人知道为什么会这样吗?这是我所有的分级文件:

  • 问题内容: 我经历了太多的代码,试图找出我做错了什么,但我却步履蹒跚,浪费时间。这将非常简单,但我无法弄清楚。 我正在开发一个Android应用程序,需要将2个微调器放在一个活动上。第二个微调器将根据第一个微调器上选择的条目进行填充。听起来很简单吧? 所以这就是我想做的。如果用户选择Mobile,则应显示中的内容,当用户选择Large business 时应运行,最后一个条目应调用。我得到的只是一