找不到 firebase:crash-plugin:1.1.0

Cannot find the firebase:crash-plugin:1.1.0

我一直在尝试添加 firebase 性能依赖,我跟着 Android 的 Firebase 性能监控入门 向导

我在顶部 gradle 文件中添加了 classpath 'com.google.firebase:firebase-plugins:1.1.0'jcenter() 存储库。

但是我收到以下错误,无法找到 com.google.firebase:firebase-plugins:1.1.0 依赖项。

我还安装了最新版本的 google 播放服务(40) 和 google 存储库(51)。

这是我的顶级 build.gradle 文件:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
  repositories {
    jcenter()
  }
  dependencies {
    classpath 'com.android.tools.build:gradle:2.3.2'
    classpath 'com.google.gms:google-services:3.0.0'
    classpath 'com.google.firebase:firebase-plugins:1.1.0'

    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
  }
}

allprojects {
  repositories {
    jcenter()
    maven { url "https://jitpack.io" }


  }

}

task clean(type: Delete) {
  delete rootProject.buildDir
}

错误信息如下:

Error:Could not find com.google.firebase:crash-plugin:1.1.0. Searched in the following locations:
    file:/Applications/Android Studio.app/Contents/gradle/m2repository/com/google/firebase/crash-plugin/1.1.0/crash-plugin-1.1.0.pom 
    file:/Applications/AndroidStudio.app/Contents/gradle/m2repository/com/google/firebase/crash-plugin/1.1.0/crash-plugin-1.1.0.jar 
    https://jcenter.bintray.com/com/google/firebase/crash-plugin/1.1.0/crash-plugin-1.1.0.pom
    https://jcenter.bintray.com/com/google/firebase/crash-plugin/1.1.0/crash-plugin-1.1.0.jar Required by: project : > com.google.firebase:firebase-plugins:1.1.0

不幸的是,该插件尚未在 bintray 上获得批准。

它现在已经被批准了,所以如果你再试一次它应该会成功!