Android 在模块中发现重复 class com.google.android.gms.location.places.zza

Android Duplicate class com.google.android.gms.location.places.zza found in modules

我正在尝试在我的项目中集成 Google 新的地方库,因为旧的地方库已被弃用。添加新的地点库后 com.google.android.libraries.places:places:1.0.0 它正在下面创建 error.How 来解决这个问题

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'
}

不要

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"

用于 Android 的 Places SDK 的 Google Play 服务版本(即 com.google.android.gms:play-services-places)已于 2019 年 7 月 29 日关闭,并且不会可用时间更长。 Android 的新版 Places SDK 现已推出。

dependencies {

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

阅读 Migrating to the New Places SDK .

仅供参考

您使用的是非常旧的版本。如果您想使用最新版本,除非您在您的应用中进行以下更改,否则库将无法工作:

  • 将compileSdkVersion升级到28或更高版本。
  • 更新您的应用以使用 Jetpack (AndroidX)。

AndroidX 将原始支持库 API 替换为 androidx 命名空间中的包。阅读关于 AndroidX Overview.

的官方指南