我正在使用rnfirebase消息传递
我遵循了所有步骤this links
但是此错误返回
无法解析配置':app:_debugApkCopy'的所有依赖项。
找不到com.google.firebase:firebase-messaging:17.1.0。
答案 0 :(得分:2)
有了提供的信息,我真的无能为力,但是在向我的一个项目中添加react-native-firebase
时确实遇到了类似的问题。
解决方案位于项目级别build.gradle
文件中,将google()
中的respositories
语句移至顶部,最终结果如下所示:
buildscript {
repositories {
google()
jcenter()
maven { url 'https://maven.fabric.io/public'
}
// other things goes here...
}