gpt4 book ai didi

android-studio - 错误 : java. util.zip.ZipException:重复条目

转载 作者:行者123 更新时间:2023-12-01 19:08:30 25 4
gpt4 key购买 nike

我正在尝试向我的项目添加一个库,现在我当前的 build.gradle 是:

apply plugin: 'com.android.application'

android {
compileSdkVersion 21
buildToolsVersion "21.1.2"

repositories {
mavenCentral()
}

defaultConfig {
applicationId "com.example.guycohen.cheaters"
minSdkVersion 11
targetSdkVersion 21
versionCode 1
versionName "1.0"
// Enabling multidex support.
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:21.0.3'
compile 'com.facebook.android:facebook-android-sdk:4.0.0'
compile 'com.android.support:multidex:1.0.0'
compile 'com.parse.bolts:bolts-android:1.+'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.whl.handytabbar:library:1.0.4'
compile 'com.nineoldandroids:library:2.4.0'
compile 'com.daimajia.easing:library:1.0.1@aar'
compile 'com.daimajia.androidanimations:library:1.1.3@aar'
}

当我添加新库时

compile 'com.github.navasmdc:PhoneTutorial:1.+@aar'

我收到此错误:

Error:Execution failed for task ':app:packageAllDebugClassesForMultiDex'.
> java.util.zip.ZipException: duplicate entry: android/support/v4/print/PrintHelperKitkat$2$1.class

我尝试通过添加来解决此问题

configurations { all*.exclude group: 'com.android.support', module: 'support-v4' }

我在我的项目中找不到重复的类。

我确定如果我可以删除重复的条目,它是否会完美运行,但我不确定如何找到它。

最佳答案

compile 'com.android.support:support-v4:22.1.1'
compile ('com.android.support:appcompat-v7:22.1.1') {
exclude module: 'support-v4'
}
compile ('com.facebook.android:facebook-android-sdk:4.2.0') {
exclude module: 'support-v4'
}
compile ('com.github.navasmdc:PhoneTutorial:1.+@aar') {
exclude module: 'support-v4'
}

关于android-studio - 错误 : java. util.zip.ZipException:重复条目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30769483/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com