Ошибка Geeting при добавлении SDK производительности Firebase в мой android Gradle файл - PullRequest
0 голосов
/ 27 марта 2020

Я пытаюсь добавить SDK производительности Firebase в свое существующее приложение, но у меня возникает проблема с версией сервиса Google Play.

Вот ошибка :

ERROR: The library com.google.android.gms:play-services-base is being requested by various other libraries at [[15.0.1,15.0.1]], but resolves to 17.0.0. Disable the plugin and check your dependencies tree using ./gradlew :app:dependencies.

Вот мой файл приложения / Gradle:

implementation 'com.google.android.gms:play-services-places:17.0.0'
    implementation 'com.google.android.gms:play-services-location:17.0.0'
    implementation 'com.google.firebase:firebase-analytics:16.0.0'
    implementation 'com.google.firebase:firebase-messaging:17.3.0'
    implementation 'com.google.firebase:firebase-core:16.0.4'
    implementation 'com.google.firebase:firebase-auth:16.0.3'
    implementation 'com.crashlytics.sdk.android:crashlytics:2.10.0'
    implementation 'com.google.firebase:firebase-perf:19.0.5'

    apply plugin: 'com.google.firebase.firebase-perf'
    apply plugin: 'com.google.gms.google-services'

Внутри моего Project Gradle file:

dependencies {
        classpath 'com.android.tools.build:gradle:3.5.0'
        classpath 'com.google.gms:google-services:4.0.2'
        classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
        classpath "com.github.dcendents:android-maven-gradle-plugin:1.4.1"
        classpath 'com.google.firebase:perf-plugin:1.3.1'

    }

Пожалуйста, дайте мне знать, если кто-нибудь сталкивался с этой проблемой. Спасибо

...