6

我正在将我的项目集成到 android studio 中的另一个应用程序中,但它显示以下错误,我正在谷歌搜索该问题但没有用。

Error:Execution failed for task ':app:packageAllDebugClassesForMultiDex'.
> java.util.zip.ZipException: duplicate entry: android/support/v4/accessibilityservice/AccessibilityServiceInfoCompatJellyBeanMr2.class

下面是我的应用程序依赖项

configurations { all*.exclude group: 'com.android.support', module: 'support-annotations' }
dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile project(':waleteros')
        compile 'com.android.support:recyclerview-v7:+'
       compile 'com.squareup.picasso:picasso:2.4.0'
    compile 'com.jakewharton:butterknife:5.1.2'
    compile files('src/libs/android_sync_service_library.jar')
    compile "com.google.android.gms:play-services:3.1.+"
    compile('com.crashlytics.sdk.android:crashlytics:2.2.2@aar') {
        transitive = true;
    }

这是我的库依赖项

configurations { all*.exclude group: 'com.android.support', module: 'support-v4' }
configurations { all*.exclude group: 'com.android.support', module: 'support-annotations' }
dependencies {
    compile project(':ingosdk')
    compile 'com.google.code.gson:gson:2.2.4'
    compile files('libs/A2iA.Mobility.jar')
    compile files('libs/acra-4.5.0.jar')
    compile files('libs/bugsense-3.5.jar')
    compile files('libs/deviceprint-lib-1.0.0.jar')
    compile files('libs/FlurryAnalytics-5.3.0.jar')
    compile files('libs/httpmime-4.1.2.jar')
    compile files('libs/libGoogleAnalyticsServices.jar')
    compile files('libs/volley.jar')
    compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar'
    compile files('libs/android-support-v13.jar')

}
4

4 回答 4

12

如果您的 libs 文件夹中有 android-support-v4.jar .. 删除它!

这解决了我的问题。

即使该文件未添加到 build.gradle 文件中.. gradle 仍将其包含在构建中。

于 2015-08-14T11:23:43.543 回答
1

类似问题,我刚导入

compile 'fr.avianey.com.viewpagerindicator:library:2.4.1.1'

并收到此错误,添加“@aar”后,问题已解决

compile 'fr.avianey.com.viewpagerindicator:library:2.4.1.1@aar'
于 2017-01-16T10:17:38.847 回答
1

升级android SDK后我遇到了同样的问题。我能够在 中运行应用程序,buildToolsVersion '23.0.1'当我更改为buildToolsVersion '24.0.3'

我通过更新我的java版本解决了这个1.7 to 1.8问题compileSdkVersion 24

于 2016-10-31T09:06:41.407 回答
0

在我看来,这个错误是由重复的 jar 文件引起的。我将我的 support-V4 jar 文件删除到我的库中,然后清理构建它工作正常。谢谢

于 2016-07-19T04:38:52.030 回答