build.gradle уровня проекта:
Код: Выделить всё
plugins {
// ...
// Add the dependency for the Google services Gradle plugin
id 'com.google.gms.google-services' version '4.4.2' apply false
}
Код: Выделить всё
plugins {
id 'com.android.application'
// Add the Google services Gradle plugin
id 'com.google.gms.google-services'
...
}
Код: Выделить всё
plugins {
...
}
Код: Выделить всё
apply plugin: "com.google.gms.google-services"
Код: Выделить всё
apply plugin: "com.android.application"
apply plugin: "org.jetbrains.kotlin.android"
apply plugin: "com.facebook.react"
apply plugin: "com.google.gms.google-services"
Может кто-нибудь знает, где найти решение этой проблемы или где я могу найти новейший способ добавления плагина.
Подробнее здесь: https://stackoverflow.com/questions/786 ... pplication