[英]Firebase assistants error: Failed to resolve: firebase-messaging-15.0.0
当我尝试使用Firebase助手连接到Cloud Messaging时,当前遇到错误。
无法解决:firebase-messaging-15.0.0
我在线搜索,解决方案是删除依赖项中的最后几个数字。 但是,当我尝试这样做时,它解决了错误,但是在Firebase助手上,它不再显示“正确设置了依赖项”。 因此,这是否意味着我未连接到Firebase云消息传递?
尝试的方法:从实现“ com.google.firebase:firebase-messaging:17.0.0:15.0.0”更改为实现“ com.google.firebase:firebase-messaging:17.0.0”
删除所有firebase-messaging依赖项并添加此依赖项
implementation 'com.google.firebase:firebase-messaging:17.0.0'
您收到以下错误:
无法解决:firebase-messaging-15.0.0
因为您在代码中使用了错误的依赖关系。 要解决此问题,请更改以下代码行:
implementation 'com.google.firebase:firebase-messaging:17.0.0:15.0.0'
至
implementation 'com.google.firebase:firebase-messaging:17.3.4'
因为这样的版本17.0.0:15.0.0
不存在。 在这里您可以找到更多信息。
在顶层build.gradle
文件中,请确保具有最新版本的Google Service插件和Gradle:
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.google.gms:google-services:4.2.0'
声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.