Не удается найти firebase:crash-plugin:1.1.0

Я пытался добавить зависимость от производительности firebase, следуя Начало работы с Руководство по мониторингу производительности Firebase для Android

Я добавил в верхний файл gradle репозиторий classpath 'com.google.firebase:firebase-plugins:1.1.0' и jcenter().

Но я получаю следующую ошибку, что зависимость com.google.firebase:firebase-plugins:1.1.0 не может быть найдена.

Также у меня установлена ​​последняя версия сервисов Google Play (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

person meh    schedule 17.05.2017    source источник
comment
Попробуйте сейчас, плагин должен работать.   -  person Ian Barber    schedule 18.05.2017
comment
да, теперь он в прямом эфире, спасибо!   -  person meh    schedule 18.05.2017


Ответы (1)


К сожалению, плагин еще не был одобрен для bintray.

Теперь он одобрен, поэтому, если вы попробуете еще раз, он должен работать!

person Ian Barber    schedule 17.05.2017