Не удается найти базу огня: аварийный плагин:1.1.0
Я пытался добавить зависимость производительности Firebase, следовал руководству по началу работы с Firebase Performance Monitoring для 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
1 ответ
Решение
К сожалению, плагин еще не был одобрен на bintray.
Теперь это было одобрено, поэтому, если вы попытаетесь снова, это должно работать!