找不到com.google.firebase:firebase-messaging:17.1.0

时间:2018-07-19 10:14:16

标签: firebase react-native firebase-cloud-messaging react-native-android

我正在使用rnfirebase消息传递

我遵循了所有步骤this links

但是此错误返回

  

无法解析配置':app:_debugApkCopy'的所有依赖项。

     

找不到com.google.firebase:firebase-messaging:17.1.0。

1 个答案:

答案 0 :(得分:2)

有了提供的信息,我真的无能为力,但是在向我的一个项目中添加react-native-firebase时确实遇到了类似的问题。

解决方案位于项目级别build.gradle文件中,将google()中的respositories语句移至顶部,最终结果如下所示:

buildscript {
    repositories {
        google()
        jcenter()
        maven { url 'https://maven.fabric.io/public' 
    }
 // other things goes here...
}