Попытка создать простое приложение с FireStore и Google Authentication. Возникли проблемы с Gradle:
В проекте "приложение" разрешенная зависимость библиотеки служб Google Play зависит от другой в конкретной версии (например, "[15.0. 1]", но не разрешается в этой версии. Поведение, демонстрируемое библиотекой, будет неизвестно.
Ошибка зависимости: com.google.android.gms: play-services-flags: 15.0.1 → com.google.android.gms: play-services-basement @[15.0.1], но версия play-services-basement была 16.0.1.
Следующие зависимости являются проектными зависимостями, которые являются прямыми или имеют транзитивные зависимости, которые приводят к искусственному решению проблемы. - "Приложение" проекта зависит от com.google.firebase: [email protected] - "Приложение" проекта зависит от com.firebaseui: [email protected]
Для расширенной информации об отладке выполните Gradle из командной строки с помощью. /gradlew --info: app: assemblyDebug, чтобы увидеть пути удаления для артефакта. Это сообщение об ошибке поступило от подключаемого модуля google-services Gradle, сообщите о проблемах по адресу https://github.com/google/play-services-plugins и отключите его, добавив googleServices {disableVersionCheck = false} в файл b uild.gradle.
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
applicationId "myapp.com"
minSdkVersion 19
targetSdkVersion 27
versionCode 11
versionName "1.1"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.google.firebase:firebase-firestore:17.1.5'
implementation 'com.firebaseui:firebase-ui-auth:4.2.0'
}
apply plugin: 'com.google.gms.google-services'
com.google.gms.googleservices.GoogleServicesPlugin
Проект Gradle:
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.google.gms:google-services:4.2.0'
}
}
Кто-нибудь может мне помочь?