В проекте «приложение» разрешенная зависимость библиотеки сервисов Google Play зависит от другой в точной версии - PullRequest
0 голосов
/ 05 января 2019

Попытка создать простое приложение с FireStore и Google Authentication. Возникли проблемы с Gradle:

В проекте 'app' исправлена ​​зависимость библиотеки сервисов 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: firebase-firestore@17.1.5 - «Приложение» проекта зависит от com.firebaseui: firebase-ui-auth@4.2.0

Для расширенной отладочной информации выполните Gradle из командной строки с помощью ./gradlew --info: app: assemblyDebug, чтобы увидеть пути привязки к артефакт. Это сообщение об ошибке пришло из Google-сервисов Gradle плагин, сообщить о проблемах на https: // github.com/google/play-services-plugins и отключите, добавив "googleServices {disableVersionCheck = false}" для вашего пользователя. файл.

    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'

    }
}

Может ли кто-нибудь мне помочь?

Ответы [ 4 ]

0 голосов
/ 29 мая 2019

Существует известная ошибка в Службах Google 4.2.0, которая может вызвать это. Понижение версии вашей службы google до 4.1.0 в build.gradle вашего проекта может решить проблему

buildscript {
    dependencies {
        classpath 'com.google.gms:google-services:4.1.0' //decreased from 4.2.0
    }
}
0 голосов
/ 16 января 2019

Обновление всех моих библиотек Сервисов Google Play до последней версии во ВСЕХ модулях решило проблему для меня. Я не вижу, чтобы у вас были какие-либо библиотеки Google Play Services, но я хочу оставить этот ответ здесь для тех, кто может счесть это полезным.

0 голосов
/ 26 марта 2019

Спасибо, но, к сожалению, у меня это не сработало. Я также должен был добавить следующее в свой build.grade (Модуль: приложение)

implementation 'com.google.android.gms:play-services-flags:16.0.1'
implementation 'com.google.android.gms:play-services-basement:16.0.1'
0 голосов
/ 05 января 2019

Проблема заключалась в том, что отсутствовала зависимость. Добавление com.google.firebase: firebase-auth решил проблему.

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.google.firebase:firebase-core:16.0.6'
//    implementation'com.google.firebase:firebase-storage:16.0.5'

    implementation'com.google.firebase:firebase-auth:16.1.0' => add this line
    implementation 'com.firebaseui:firebase-ui-auth:4.2.0'
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...