今天,在没有触及任何项目之后,我的gradle对我大吼大叫,不会编译项目。它无法解析firebase-iid
,firebase-common
,play-services-analytics-impl
,play-services-auth-api-phone
和play-services-auth-base
。周末过后非常混乱。
所以我检查了不同API的版本,并升级了需要升级的API,发现Google已经向firebase-core
添加了强制依赖,添加了它,然后升级了我的google-services
插件,甚至添加了play-services-base
依赖项。我还将firebase-messaging
升级到版本17.0.0,将crashlytics
升级到版本2.9.3。
但是,构建版本无法编译,并显示以下错误消息:
图书馆com.google.android.gms:play-services-measurement-base正在[[15.0.2,15.0.2],[15.0.4,15.0.4]]的各种其他图书馆提出要求,但结算为15.0.4。禁用插件并使用./gradlew:app:dependencies检查依赖关系树。
在我尝试修复之后,这是我的Gradle文件(仅显示依赖项部分):
apply plugin: 'com.android.application'
...
dependencies {
implementation project(':library')
implementation project(':otherlibrary')
implementation 'com.android.volley:volley:1.1.0'
implementation('org.apache.httpcomponents:httpmime:4.3.6') {
exclude module: 'httpclient'
}
implementation 'org.apache.httpcomponents:httpclient-android:4.3.5'
implementation 'com.google.android.gms:play-services-base:15.0.1'
implementation 'com.google.android.gms:play-services-analytics:15.0.2'
implementation 'com.google.android.gms:play-services-location:15.0.1'
implementation('com.google.android.gms:play-services-ads:15.0.1') {
exclude group: 'com.android.support', module: 'customtabs'
}
implementation 'com.google.android.gms:play-services-identity:15.0.1'
implementation 'com.google.android.gms:play-services-auth:15.0.1'
implementation 'com.google.android.gms:play-services-drive:15.0.1'
implementation 'com.google.firebase:firebase-core:16.0.0'
implementation 'com.google.firebase:firebase-messaging:17.0.0'
implementation 'com.android.support:multidex:1.0.3'
implementation 'com.readystatesoftware.sqliteasset:sqliteassethelper:2.0.1'
implementation 'com.squareup.picasso:picasso:2.5.2'
implementation 'com.nineoldandroids:library:2.4.0'
implementation 'com.daimajia.slider:library:1.1.5@aar'
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:mediarouter-v7:27.1.1'
implementation 'com.android.support:support-v4:27.1.1'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support:exifinterface:27.1.1'
implementation 'com.android.support:support-v13:27.1.1'
// https://mvnrepository.com/artifact/com.darwinsys/hirondelle-date4j
implementation group: 'com.darwinsys', name: 'hirondelle-date4j', version: '1.5.1'
// For RxAndroid and RxJava
implementation 'io.reactivex.rxjava2:rxandroid:2.0.2'
// Because RxAndroid releases are few and far between, it is recommended you also
// explicitly depend on RxJava's latest version for bug fixes and new features.
// (see https://github.com/ReactiveX/RxJava/releases for latest 2.x.x version)
implementation 'io.reactivex.rxjava2:rxjava:2.1.12'
// Crashlytics
implementation 'com.crashlytics.sdk.android:crashlytics:2.9.3'
// CSV with outputstream writer
implementation 'com.opencsv:opencsv:4.1'
// Gson
implementation 'com.google.code.gson:gson:2.8.5'
debugImplementation 'com.android.support.test:runner:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test:rules:1.0.2'
androidTestImplementation 'org.hamcrest:hamcrest-library:1.3'
androidTestImplementation 'junit:junit:4.12'
}
apply plugin: 'com.google.gms.google-services'
我的项目范围的gradle包含以下几行:
...
repositories {
maven {
url 'https://maven.google.com/'
name 'Google'
}
...
}
dependencies {
...
classpath 'com.google.gms:google-services:4.0.1'
}
...
我已根据official firebase documentation尝试修正多个库的版本号,这与this question大致相同。
正如您可以在官方文档链接中看到的那样,截至2018年5月2日,他们提供了一种解决此类问题的方法,但有问题的版本数量并不相同,我已经尝试了给定的修复(与现在一些降级,但无济于事。
官方文档: 如果您的应用依赖于com.google.firebase:firebase-core:15.0.0以及以下任何库:
com.google.android.gms:play-services-analytics com.google.android.gms:play-services-appinvite com.google.android.gms:play-services-tagmanager com.google.firebase:firebase-analytics com.google.firebase:firebase-crash com.google.firebase:firebase-dynamic-links com.google.firebase:firebase-messaging
您需要将后一个依赖项的版本更新为 15.0.2。这解决了Google Services Gradle插件版本3.3.0报告的问题:库 com.google.android.gms:正在进行play-services-measurement-base 各种其他图书馆在[[15.0.0,15.0.0], [15.0.2,15.0.2]],但解析为15.0.2 ......
那么如何才能解决这些版本冲突,以便我的构建能够再次正确编译?
答案 0 :(得分:2)
所以在这个问题丢失了一天之后,我发现最新版本的play-services-analytics
不是他们在their website中发布的版本。它是16.0.0
而不是15.0.2
。
Android Studio告诉同事作为警告,但是我对此并不关心。所以这就是改变一切的界限:
implementation 'com.google.android.gms:play-services-analytics:16.0.0'
答案 1 :(得分:1)
我将此添加到了build.gradle(应用程序版本)中,并且可以正常工作:
googleServices { disableVersionCheck = true }
答案 2 :(得分:0)
我尝试恢复到旧版本,它似乎工作,我发现gradle-wrapper.properties
使用的是旧版本(4.5),而不是我在新项目中使用的4.6。改变这一点以及从alpha15恢复到classpath 'com.android.tools.build:gradle:3.2.0-alpha08'
似乎可以解决问题。我想如果你愿意,可以使用alpha 15,但要确保你可以使用classpath 'com.android.tools.build:gradle:3.1.2'
。
除了所有这些更改外,firebase-core
和google-gms-services
应设置为版本16.0.0。
答案 3 :(得分:0)
很遗憾,Google Play服务已停止 这个寡妇味精是生成的,永远不会运行任何Google服务执行的