Если вы хотите интегрировать библиотеки Firebase в один из ваших собственных проектов, вам необходимо выполнить несколько основных задач для подготовки проекта Android Studio.Возможно, вы уже сделали это как часть добавления Firebase в свое приложение.
Сначала добавьте правила в файл build.gradle корневого уровня, чтобы включить плагин google-services и репозиторий Google Maven:
buildscript {
// ...
dependencies {
// ...
classpath 'com.google.gms:google-services:4.2.0' // google-services plugin
}
}
allprojects {
// ...
repositories {
// ...
google() // Google's Maven repository
}
}
Затем в файле Gradle модуля (обычно это app / build.gradle) добавьте строку плагина apply в нижней части файла, чтобы включить плагин Gradle:
apply plugin: 'com.android.application'
android {
// ...
}
dependencies {
// ...
implementation 'com.google.firebase:firebase-core:16.0.6'
// Getting a "Could not find" error? Make sure you have
// added the Google maven respository to your root build.gradle
}
// ADD THIS AT THE BOTTOM
apply plugin: 'com.google.gms.google-services'