Android Studio - 程序类型已存在 : com. google.android.gms.location.places.zza

标签 android firebase google-maps android-gradle-plugin gmsplace

首先:让我解释一下情况,我有一个 sdk 与 google Api 一起使用并实现了很多依赖项。然后我将 lib 实现到我的新应用程序中,它也实现了依赖项。一切顺利,直到我尝试运行该应用程序。

当我(在设备上)运行我的项目时,我收到以下错误消息:

Error: Program type already present: com.google.android.gms.location.places.zza

在 Gradle 日志中有以下堆栈跟踪(不是全部)

Program type already present: com.google.android.gms.location.places.zza
Learn how to resolve the issue at https://developer.android.com/studio/buil/dependencies#duplicate_classes. at com.android.builder.profile.Recorder$Block.handleException(Recorder.java:55)
at com.android.builder.profile.ThreadRecorder.record(ThreadRecorder.java:104)
at com.android.build.gradle.internal.pipeline.TransformTask.transform(TransformTask.java:230)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.gradle.internal.reflect.JavaMethod.invoke(JavaMethod.java:73)
at org.gradle.api.internal.project.taskfactory.IncrementalTaskAction.doExecute(IncrementalTaskAction.java:50)

这里是build.gradle工程(lib)

buildscript {
repositories {
    google()
    jcenter()

}
dependencies {
    //**------------Added Recently----------------**//
    classpath 'com.android.tools.build:gradle:3.2.1'
    classpath 'com.google.gms:google-services:4.1.0'


    classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
    classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'

    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files}
}
plugins {
id "com.jfrog.bintray" version "1.7.3"
}
allprojects {
repositories {
    google()
    jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}

这是 build.gradle Module:app(lib)

apply plugin: 'com.android.library'
archivesBaseName = "inngage-lib"
ext {
PUBLISH_GROUP_ID = 'br.com.inngage.sdk'
PUBLISH_ARTIFACT_ID = 'inngage-lib'
PUBLISH_VERSION = '2.2.0'
}

android {
lintOptions {
    abortOnError false
}
signingConfigs {
    w
    release {
        keyAlias 'inngage-lib'
        keyPassword '************************************'
        storeFile file('/Users/Downloads/inngage-lib.keystore')
        storePassword '***********************************'
    }
}
compileSdkVersion 28
useLibrary 'org.apache.http.legacy'
defaultConfig {
    minSdkVersion 14
    targetSdkVersion 28
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        signingConfig signingConfigs.release
    }
    debug {
        minifyEnabled false
    }
}
}

dependencies {

implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support:design:28.0.0'
 //noinspection UseOfBundledGooglePlayServices
 //implementation 'com.google.android.gms:play-services:12.0.1'
// implementation "com.google.android.gms:play-services-base:16.0.1"
implementation 'com.google.firebase:firebase-core:16.0.4'
implementation 'com.google.firebase:firebase-messaging:17.3.4'
implementation 'com.google.android.gms:play-services-gcm:16.0.0'

implementation 'com.google.android.gms:play-services-maps:16.0.0'
implementation 'com.google.android.gms:play-services-location:16.0.0'
implementation 'com.google.android.gms:play-services-iid:16.0.0'

testImplementation 'junit:junit:4.12'
}
      apply plugin: 'com.google.gms.google-services'
      apply from: 'https://raw.githubusercontent.com/blundell/release-android-library/master/android-release-aar.gradle'

       apply plugin: 'com.jfrog.bintray'

这里是build.gradle项目(**我的应用**)

buildscript {

    repositories {
        maven { url "https://dl.bintray.com/inngage/repo" }
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.2.1'
        classpath 'com.google.gms:google-services:4.1.0'


        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        maven { url "https://dl.bintray.com/inngage/repo" }
        google()
        jcenter()
    }
}

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

这是 build.gradle Module:app(** 我的 App**)

    apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.admin.sdk_test"
        minSdkVersion 23
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    //noinspection GradleCompatible
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support:design:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    /* added */
    implementation 'com.google.firebase:firebase-core:16.0.4'
    implementation 'com.google.firebase:firebase-auth:16.0.5'
    implementation 'com.google.firebase:firebase-messaging:17.3.4'

    /* Inngage SDK*/
    implementation 'br.com.inngage.sdk:inngage-lib:2.2.0'
    /*---------------*/
    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'

最佳答案

我添加了这个依赖并且它工作正常!

implementation 'com.google.android.gms:play-services-places:16.0.0'

关于Android Studio - 程序类型已存在 : com. google.android.gms.location.places.zza,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52952092/

相关文章:

javascript - 使用XMLHttpRequest加载KML谷歌地图,无法加载KML

javascript - 如何在 Angular 中制作自定义指令以使用谷歌地图计算距离

javascript - JSON 响应解析错误 - Javascript

android - 使用 Firebase Remote Config 进行互斥 A/B 测试

float View 的Android测试

firebase - 什么是授权重定向 URI?

android - Firebase 权限被拒绝

java - 当前位置的android google maps问题

android - 如何使按钮闪烁?

javascript - 从 Firebase 检索用户数据