错误:在项目 'app' 中,已解析的 Google Play 服务库依赖项依赖于另一个



当我尝试升级插件时,我会遇到这样的错误。我尝试了bu无法修复的地段。

gradle:

private static void googleAndFirebase(configuration) {
//gcm
configuration.implementation 'com.google.android.gms:play-services-gcm:16.0.0'
//Firebase libs
configuration.implementation 'com.google.firebase:firebase-core:16.0.7'
configuration.implementation 'com.google.firebase:firebase-auth:16.1.0'
configuration.implementation 'com.google.firebase:firebase-database:16.0.6'
configuration.implementation 'com.google.firebase:firebase-messaging:17.3.4'
//lib for map
configuration.implementation 'com.google.android.gms:play-services-maps:16.0.0'
configuration.implementation 'com.google.android.gms:play-services-location:16.0.0'
//google analytics
configuration.implementation 'com.google.android.gms:play-services-analytics:16.0.6'
//map utils
configuration.implementation 'com.google.maps.android:android-maps-utils:0.5' 
}

错误:

ERROR: In project 'app' a resolved Google Play services library dependency depends on another at an exact version (e.g. "[16.0.
5]", but isn't being resolved to that version. Behavior exhibited by the library will be unknown.
Dependency failing: com.google.android.gms:play-services-analytics-impl:16.0.6 -> com.google.android.gms:play-services-m
easurement-base@[16.0.5], but play-services-measurement-base version was 16.3.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-measurement-connector-impl@17.0.5
-- Project 'app' depends onto com.google.android.gms:play-services-analytics@16.0.6
-- Project 'app' depends onto com.google.firebase:firebase-analytics-impl@16.3.0
-- Project 'app' depends onto com.google.android.gms:play-services-tagmanager-v4-impl@16.0.6
-- Project 'app' depends onto com.google.firebase:firebase-analytics@16.3.0
-- Project 'app' depends onto com.google.android.gms:play-services-measurement-base@16.0.5
-- Project 'app' depends onto com.google.android.gms:play-services-analytics-impl@16.0.6
-- Project 'app' depends onto com.google.firebase:firebase-core@16.0.7
-- Project 'app' depends onto com.google.android.gms:play-services-measurement-base@16.3.0
-- Project 'app' depends onto com.google.android.gms:play-services-measurement-api@16.3.0
For extended debugging info execute Gradle from the command line with ./gradlew --info :app:assembleDebug to see the dep
endency paths to the artifact. This error message came from the google-services Gradle plugin, report issues at https://
github.com/google/play-services-plugins and disable by adding "googleServices { disableVersionCheck = false }" to your b
uild.gradle file

我尝试了这里提到的解决方案,但我的问题没有解决。

请让我知道确切的问题

如firebase文档中清楚地提到的。

配置 'com.google.firebase:firebase-core:16.0.7'

正在证明Google Analytic

我们建议从com.google.firebase开始:firebase-core, 提供Google分析功能功能。

您也在使用。

配置 'com.google.android.gms:Play-Services-Analytics:16.0.6'

这引起了这个问题。因此,您应该使用任何一个用于分析您的应用程序。

最新更新