После того, как я установил «com.google.android.gms: play-services-maps: 16.1.0» и «com.google.android.gms: play-services-location: 16.0.0», возникает ошибка, когдаЯ пытаюсь запустить приложение.
Я прочитал из другого потока, что есть дубликаты библиотек.Проблема в том, что я не знаю, как найти дубликат библиотеки.
Вот мои зависимости:
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
//noinspection GradleCompatible
implementation 'com.android.support:appcompat-v7:28.0.0'
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'
//AUTOML
implementation 'com.google.cloud:google-cloud-automl:0.55.1-beta'
implementation 'io.grpc:grpc-okhttp:1.16.1'
implementation 'com.android.support:multidex:1.0.3'
//FIREBASE
implementation 'com.android.support:recyclerview-v7:28.0.0'
implementation 'com.google.firebase:firebase-admin:6.7.0'
annotationProcessor 'com.google.auto.value:auto-value:1.4'
//MAPS
implementation 'com.google.android.gms:play-services-maps:16.1.0'
implementation 'com.google.android.gms:play-services-location:16.0.0'
//After I implemented this two dependencies. That error occured.
}