无法生成代码错误。
CONFIGURE FAILED in 5s
Could not find com.google.firebase:firebase-plugins:1.1.5.
Searched in the following locations:
https://dl.google.com/dl/android/maven2/com/google/firebase/firebase-plugins/1.1.5/firebase-plugins-1.1.5.pom
https://dl.google.com/dl/android/maven2/com/google/firebase/firebase-plugins/1.1.5/firebase-plugins-1.1.5.jar
https://jcenter.bintray.com/com/google/firebase/firebase-plugins/1.1.5/firebase-plugins-1.1.5.pom
https://jcenter.bintray.com/com/google/firebase/firebase-plugins/1.1.5/firebase-plugins-1.1.5.jar
https://dl.bintray.com/android/android-tools/com/google/firebase/firebase-plugins/1.1.5/firebase-plugins-1.1.5.pom
https://dl.bintray.com/android/android-tools/com/google/firebase/firebase-plugins/1.1.5/firebase-plugins-1.1.5.jar
Required by:
project :
经过大量的搜索后,找不到任何可行的解决方案。
顶级gradle文件 应用插件:“ com.google.gms.google-services” 已经添加。
google(),jcentre存储库已添加到build.gradle文件中。
答案 0 :(得分:15)
今天早上我遇到了同样的问题,我决定将以下内容添加到项目的存储库块中:
jcenter {url 'https://firebase.bintray.com/gradle'}
答案 1 :(得分:1)
这似乎是工件丢失的另一种情况。我发现还有一个名为com.google.firebase:perf-plugin:1.1.5
的工件,并使用它代替了com.google.firebase:firebase-plugins:1.1.5
使我的构建再次可用。但这不知何故没有记录,所以我不确定这是否是要更改的名称。
答案 2 :(得分:-2)
有同样的问题。看来Google Repo缺少此依赖项。作为临时工作,我添加了另一个存储库以获取相同的存储库。
repositories {
// ...
maven { url 'https://dl.bintray.com/firebase/gradle' }
}
希望有帮助