Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/231.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android 错误:找不到com.google.firebase:firebase插件:1.1.5_Android_Firebase_Android Studio_Android Gradle Plugin - Fatal编程技术网

Android 错误:找不到com.google.firebase:firebase插件:1.1.5

Android 错误:找不到com.google.firebase:firebase插件:1.1.5,android,firebase,android-studio,android-gradle-plugin,Android,Firebase,Android Studio,Android Gradle Plugin,无法生成代码获取错误 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 ht

无法生成代码获取错误

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 :
在谷歌搜索了很多次之后,没有找到任何有效的解决方案

顶级渐变文件 应用插件:“com.google.gms.googleservices” 已经添加了


google(),jcentre repository添加到build.gradle文件中。

今天早上我遇到了同样的问题,我决定将以下内容添加到我的项目的repositories块中:

jcenter {url 'https://firebase.bintray.com/gradle'}

这似乎是另一个工件失踪的例子。我发现还有另一个工件名为
com.google.firebase:perf plugin:1.1.5
,并使用它代替
com.google.firebase:firebase plugins:1.1.5
,使我的构建再次工作。但不知何故,这在任何地方都没有记录,因此我不确定这是否是有意更改名称。

请编辑您的问题,以显示再现此问题的整个最小build.gradle配置。这听起来与Google Play services插件的问题有关(但不完全相同)。jCenter中缺少最新版本的构建工件。正在调查。这似乎是目前的解决办法。看见