当前位置: 首页 > 知识库问答 >
问题:

gom.google.android.gms已经添加到输出中。请删除重复的对象

邢宏浚
2023-03-14

我试图将应用程序的分析功能从Mixpanel和Google analytics转移到Segment.io。当我试图建立我的应用程序,它总是失败。基于一些谷歌搜索,我认为有一个图书馆复制。但我不知道是哪个图书馆导致了这个问题。


Adapter-1.0.1.jar
Android-Async-HTTP-1.4.3.jar
Android-ViewBadger.jar
Commons-lang3-3.3.1.jar
Endless-1.2.3.jar
GoogleConversionTrackingSDK-2.2.1.jar
LibPhoneNumber-5.9.jar
Parse-1.8.2.jar
PayPal_Mecl.jar
PayPalAndroidSDK-2.8.4.jar

Build.Gradle

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])

    apt "org.androidannotations:androidannotations:$AAVersion"
    compile "org.androidannotations:androidannotations-api:$AAVersion"

    compile 'com.google.code.gson:gson:2.3.1'
    compile 'com.google.android.gms:play-services-base:6.5.87'
    compile 'com.google.android.gms:play-services-appindexing:6.5.87'
    compile 'com.google.android.gms:play-services-gcm:7.0.0'
    compile 'com.google.android.gms:play-services-location:7.0.0'
    compile 'com.google.android.gms:play-services-maps:6.5.87'
    compile 'com.google.android.gms:play-services-wallet:6.5.87'
    compile 'com.android.support:support-v4:22.1.1'
    compile 'com.parse.bolts:bolts-android:1.1.2'
    compile 'com.facebook.android:facebook-android-sdk:3.23.1'
    compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar'
    compile 'se.emilsjolander:stickylistheaders:2.6.0'
    compile 'com.sothree.slidinguppanel:library:3.0.0'
    compile 'com.squareup.picasso:picasso:2.5.0'

    apt 'com.michaelpardo:ollie-compiler:0.3.1'
    compile 'com.michaelpardo:ollie:0.3.1'

    compile project(':SlidingMenuLibrary')
    compile project(':ProgressWheel-master')
    compile project(':simplecropimagelib')
    compile 'com.splunk.mint:mint:4.1'
    compile('com.crashlytics.sdk.android:crashlytics:2.2.3@aar') {
        transitive = true;
    }
    compile('com.segment.analytics.android:analytics-core:+') {
        transitive = true
    }
    compile('com.segment.analytics.android:analytics-integration-google-analytics:3.1.5') {
        transitive = true
    }
    // Add other dependencies as you want here
    compile('com.segment.analytics.android:analytics-integration-mixpanel:+') {
        transitive = true
    }
    // Add other dependencies as you want here
    compile('com.segment.analytics.android:analytics-integration-localytics:+') {
        transitive = true
    }
}

错误:类com.google.android.gms.internal.zzpw已添加到输出中。请删除重复的副本。

错误:类com.google.android.gms.internal.zzoy已添加到输出中。请删除重复的副本。2个错误;正在中止

错误:任务“:app:DexStagingDebug”执行失败。

错误代码:1

共有1个答案

逑俊楚
2023-03-14

我以为你有不一致的谷歌播放服务主要版本。

尽量使用相同的主版本库。例如,将库升级到7.5.0

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])

    apt "org.androidannotations:androidannotations:$AAVersion"
    compile "org.androidannotations:androidannotations-api:$AAVersion"

    compile 'com.google.code.gson:gson:2.3.1'
    compile 'com.google.android.gms:play-services-base:7.5.0'
    compile 'com.google.android.gms:play-services-appindexing:7.5.0'
    compile 'com.google.android.gms:play-services-gcm:7.5.0'
    compile 'com.google.android.gms:play-services-location:7.5.0'
    compile 'com.google.android.gms:play-services-maps:7.5.0'
    compile 'com.google.android.gms:play-services-wallet:7.5.0'
    compile 'com.android.support:support-v4:22.1.1'
    compile 'com.parse.bolts:bolts-android:1.1.2'
    compile 'com.facebook.android:facebook-android-sdk:3.23.1'
    compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar'
    compile 'se.emilsjolander:stickylistheaders:2.6.0'
    compile 'com.sothree.slidinguppanel:library:3.0.0'
    compile 'com.squareup.picasso:picasso:2.5.0'

    apt 'com.michaelpardo:ollie-compiler:0.3.1'
    compile 'com.michaelpardo:ollie:0.3.1'

    compile project(':SlidingMenuLibrary')
    compile project(':ProgressWheel-master')
    compile project(':simplecropimagelib')
    compile 'com.splunk.mint:mint:4.1'
    compile('com.crashlytics.sdk.android:crashlytics:2.2.3@aar') {
        transitive = true;
    }
    compile('com.segment.analytics.android:analytics-core:+') {
        transitive = true
    }
    compile('com.segment.analytics.android:analytics-integration-google-analytics:3.1.5') {
        transitive = true
    }
    // Add other dependencies as you want here
    compile('com.segment.analytics.android:analytics-integration-mixpanel:+') {
        transitive = true
    }
    // Add other dependencies as you want here
    compile('com.segment.analytics.android:analytics-integration-localytics:+') {
        transitive = true
    }
}
 类似资料:
  • 在我的MacBook Air上有0.8.9测试版,我的应用程序构建得很好。在我的iMac上我发现了这个错误。 org.apache.commons.collections.ArrayStack已经添加到输出中。请删除重复的副本。 更新的问题似乎是commons-collections被添加到了外部库和commons-beanutils,其中也包含了commons-collections。 此外,我

  • 问题内容: 我有一个包含我的对象的数组。每个人都有财产。 有没有比我的数组中找到重复的帖子ID的更有效方法? 问题答案: 我将建议2解决方案。 两种方法都必须是平等的 使帖子符合可哈希和平等 在这里,我假设您的struct(或类)具有type 的属性。 解决方案1(丢失原始订单) 要删除重复的内容,您可以使用 解决方案2(保留订单)

  • 问题内容: 我有一个简单的问题要问,我有Product类,其中的字段如下: 我想根据ID从LinkedHasSet中删除重复项,例如,具有相同ID但数量不同的产品将被添加到集合中,我想删除(更新)具有相同ID的产品,并且它将通过我的对象的唯一ID进行操作要做到这一点? 例如,产品:id = 1,类别= CCTV,符号= TVC-DS,desc =简易摄像机,价格= 100.00, 数量= 1, 产

  • 我试图在我的envers表中查找一个对象,但是我没有PK。代替PK,我有一个字段(“孩子”)。这是我的疑问, 列表结果列表=读卡器。createQuery()。用于修改实体(TP.class、false、true)。添加(AuditEntity.property(“子”)。eq(nodeid))。getResultList(); 但是我明白了: 原因:org。冬眠PropertyNotFoundE

  • 已移除。[重复] ........ ..

  • 问题内容: 我有一个看起来像这样的数组: 而且我需要删除重复项,以便保留类似以下内容: 我尝试安装underscore.js并使用._uniq,但这似乎仅在对象中出现一对时才起作用。我似乎无法使它跨多个键工作。 当我尝试类似的东西: 我只得到前三个唯一值(每个年级一个)。但是我需要所有年级和领域的唯一值。是否有一种简单的方法将两个键都馈给_.uniq函数? 最终,我需要一个列表,其中每个唯一的等级