我猜我可能有一些版本的问题?我正在使用
implementation 'com.google.firebase:firebase-messaging:15.0.2'
一切正常,现在我想添加RealtimeDatabase
Android Studio的助手建议:
implementation 'com.google.firebase:firebase-messaging:15.0.2'
implementation 'com.google.firebase:firebase-database:11.8.0'
官方指南建议
implementation 'com.google.firebase:firebase-messaging:15.0.2'
implementation 'com.google.firebase:firebase-database:16.0.1'
两种结果:请通过更新google-services插件的版本...或将com.google.android.gms的版本更新为15.0.2来解决版本冲突。
我知道我可能必须调整他们的版本,但是我知道了
找不到com.google.firebase:firebase-messaging:16.0.1。
或
找不到com.google.firebase:firebase-database:15.0.2。
// If I use All official latest
implementation 'com.google.firebase:firebase-messaging:17.0.0'
implementation 'com.google.firebase:firebase-core:16.0.1'
implementation 'com.google.firebase:firebase-database:16.0.1'
找不到com.google.firebase:firebase-core:17.0.0。
那我怎么把它们放在一起?
官方网站:
Getting a "Could not find" error? Make sure you have added the Google maven respository to your root build.gradle
但是我做到了。 (是吗?)这是我的app.gradle
buildscript {
ext.kotlin_version = '1.2.30'
repositories {
google()
jcenter()
maven { url 'https://plugins.gradle.org/m2/' }
maven { url "https://maven.google.com" }
}
dependencies {
classpath 'gradle.plugin.com.onesignal:onesignal-gradle-plugin:0.10.1'
classpath 'com.android.tools.build:gradle:3.1.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.google.gms:google-services:3.1.1'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
ext {
roomVersion = '1.0.0'
archLifecycleVersion = '1.1.0'
}
task clean(type: Delete) {
delete rootProject.buildDir
}
答案 0 :(得分:2)
更改此:
classpath 'com.google.gms:google-services:3.1.1'
对此:
classpath 'com.google.gms:google-services:4.0.1'
并使用以下依赖项:
implementation 'com.google.firebase:firebase-messaging:17.0.0'
implementation 'com.google.firebase:firebase-database:16.0.1'
implementation 'com.google.firebase:firebase-core:16.0.1'
此处有更多信息:Firebase Release notes