Android Дубликат класса com.google. android .gms.location.places.zza найден в модулях - PullRequest
1 голос
/ 21 апреля 2020

Я пытаюсь интегрировать библиотеку Google New Place в свой проект, поскольку устаревшая библиотека мест устарела. После добавления новой библиотеки мест com.google.android.libraries.places:places:1.0.0 создается ошибка ниже. Как решить эту проблему

Duplicate class com.google.android.gms.location.places.zza found in modules classes.jar 
(com.google.android.gms:play-services-places-placereport:16.0.0) and classes.jar 
(com.google.android.gms:play-services-places:11.8.0)

Ниже приведен файл gradle уровня моего приложения

apply plugin: 'com.android.application'

allprojects {
repositories {
    google()
}
repositories {
    maven {
        url 'https://maven.google.com'
    }
}
repositories {
    jcenter()
    maven { url "https://jitpack.io" }
}
}

android {
compileSdkVersion 26
buildToolsVersion '26.0.2'
defaultConfig {
    applicationId "com.api.app"
    minSdkVersion 16
    targetSdkVersion 26
    versionCode 27
    versionName "1.5"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    manifestPlaceholders = [HOCKEYAPP_APP_ID: "51a9c4471559421b8d53a07cbb3e3fa0"]
    useLibrary 'org.apache.http.legacy'
    multiDexEnabled true

}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
    exclude group: 'com.android.support', module: 'support-annotations'
})

implementation('com.crashlytics.sdk.android:crashlytics:2.6.8@aar') {
    transitive = true;
}

implementation ('com.google.android.libraries.places:places:1.0.0') {
    exclude group: 'com.github.bumptech.glide', module: 'glide'
}

implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support:design:26.1.0'
implementation 'com.android.support:recyclerview-v7:26.1.0'
implementation 'com.android.support:cardview-v7:26.1.0'
implementation 'com.squareup.okhttp3:okhttp:3.8.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.0-beta2'
implementation 'com.iarcuschin:simpleratingbar:0.1.5'
implementation 'com.google.code.gson:gson:2.8.1'

implementation "com.google.android.gms:play-services-maps:11.8.0"
implementation "com.google.android.gms:play-services-location:11.8.0"
implementation "com.google.android.gms:play-services-places:11.8.0"
implementation "com.google.firebase:firebase-auth:11.8.0"

implementation "com.google.firebase:firebase-messaging:11.8.0"
implementation "com.google.firebase:firebase-database:11.8.0" 
implementation "com.google.firebase:firebase-invites:11.8.0"
implementation "com.google.android.gms:play-services:11.8.0"

implementation 'com.android.support:multidex:1.0.1'
implementation 'com.hbb20:ccp:1.7.2'
implementation 'de.hdodenhof:circleimageview:2.1.0'
implementation 'net.hockeyapp.android:HockeySDK:4.1.3'
implementation 'com.android.volley:volley:1.1.0'
implementation 'com.facebook.android:facebook-android-sdk:4.0.0'
implementation 'com.google.code.gson:gson:2.7'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.github.krtkush:LinearTimer:v2.1.0'
implementation 'com.squareup.picasso:picasso:2.5.2'
implementation 'com.github.bumptech.glide:glide:3.6.1'

api "com.sothree.slidinguppanel:library:3.0.0" 
implementation 'com.google.maps.android:android-maps-utils:0.4'

implementation 'com.iarcuschin:simpleratingbar:0.1.5'
implementation 'com.paypal.sdk:paypal-android-sdk:2.15.3'
testImplementation 'junit:junit:4.12'
}

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

И ниже - gradle уровня моего проекта

buildscript {
repositories {
    jcenter()
    maven { url 'https://maven.google.com' }
    google()


}
dependencies {
    classpath 'com.android.tools.build:gradle:3.5.0'
    classpath 'com.google.gms:google-services:3.1.0'
}
}

allprojects {
repositories {
    jcenter()
    maven { url 'https://maven.google.com' }
}
}

project.ext {
supportVersion = '26.0.1'
googleVersion = '11.8.0'
}

task clean(type: Delete) {
delete rootProject.buildDir
}


task createWrapper(type: Wrapper) {
gradleVersion = '5.4.1'
}

1 Ответ

1 голос
/ 21 апреля 2020

Не

implementation ('com.google.android.libraries.places:places:1.0.0') {
    exclude group: 'com.github.bumptech.glide', module: 'glide'
}

Вы можете попробовать

implementation "com.google.android.libraries.places:places:1.1.0"

Версия Google Play Services для Places SDK для Android (т.е. .google. android .gms: play-services-place) была отключена 29 июля 2019 года и больше не доступна. Доступна новая версия Places SDK для Android.

Do

dependencies {

    implementation 'com.google.android.libraries.places:places:2.2.0'
}

Чтение Migrating to the New Places SDK.

FYI

Вы используете очень старые версии. Если вы хотите использовать последнюю версию, библиотеки не будут работать, если вы не внесете следующие изменения в свое приложение:

  • Обновите compileSdkVersion до 28 или более поздней версии.
  • Обновите приложение, чтобы использовать Jetpack ( AndroidX).

AndroidX заменяет оригинальные API библиотеки поддержки пакетами в пространстве имен androidx. Прочитайте официальное руководство о AndroidX Overview.

...