Это необходимо изменить / обновить до play-services-base:16.1.0
(который не входит в комплект):
//noinspection UseOfBundledGooglePlayServices
implementation "com.google.android.gms:play-services:12.0.1"
И удали эту строку; просто потому, что рисование проблемы не решает проблему:
com.google.gms.googleservices.GoogleServicesPlugin.config.disableVersionCheck = true
Библиотеки com.android.support:appcompat-v7:28.0.0
& com.android.support:cardview-v7:28.0.0
также добавляются дважды. и этот плагин принадлежит нижней части build.gradle
:
apply plugin: "com.google.gms.google-services"
... это исправляет сборку:
dependencies {
implementation "com.android.support:appcompat-v7:28.0.0"
implementation "com.android.support:support-v4:28.0.0"
implementation "com.android.support:cardview-v7:28.0.0"
implementation "com.android.support:recyclerview-v7:28.0.0"
implementation "com.android.support:exifinterface:28.0.0"
implementation "com.android.support:design:28.0.0"
implementation "com.android.support.constraint:constraint-layout:1.1.3"
implementation "com.google.firebase:firebase-core:16.0.8"
implementation "com.google.firebase:firebase-auth:16.2.1"
implementation "com.google.firebase:firebase-database:16.1.0"
implementation "com.google.firebase:firebase-ml-vision:19.0.3"
implementation ("com.google.android.gms:play-services-base:16.1.0") {
exclude group: "com.android.support", module: "support-v4"
}
implementation ("com.google.android.gms:play-services-auth:16.0.1") {
exclude group: "com.android.support", module: "support-v4"
}
implementation ("com.theartofdev.edmodo:android-image-cropper:2.6.0") {
exclude group: "com.android.support", module: " exifinterface"
}
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"
}
apply plugin: "com.google.gms.google-services"