gpt4 book ai didi

android - 我的 Android 应用程序出现重复输入错误

转载 作者:行者123 更新时间:2023-11-30 00:43:22 26 4
gpt4 key购买 nike

同步gradle文件时出现这个错误

Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug'. com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: com/google/zxing/client/android/camera/CameraConfigurationUtils.class

我尝试清理项目,重建项目和 multidex,排除模块。

我的最小 sdk 是 19。如果大于 20,multidex 工作正常,但在 SDK 19 中它不起作用。

这是我的 gradle 构建文件:

apply plugin: 'com.android.application'

android
{

compileSdkVersion 24
buildToolsVersion '25.0.2'

defaultConfig
{
applicationId "com.example.prototype_01"
minSdkVersion 19
targetSdkVersion 22
versionCode 1
versionName "1.0"
multiDexEnabled true
}
buildTypes
{
release
{
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies
{
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.1.1'
compile 'com.android.support:design:24.1.1'
compile 'com.google.android.gms:play-services-appindexing:9.6.1'
compile 'com.android.support:multidex:1.0.0'
compile 'com.journeyapps:zxing-android-embedded:3.2.0@aar'
compile 'com.google.zxing:core:3.2.0'
compile 'com.github.bumptech.glide:glide:3.5.1'
//compile files('libs/android-core-3.2.1.jar')
compile 'com.android.support:support-v4:24.2.1'
compile 'com.tsengvn:Typekit:1.0.0'
compile 'com.google.firebase:firebase-messaging:9.6.1'
}
apply plugin: 'com.google.gms.google-services'

如何解决这个问题?

最佳答案

它与 Multidex 无关。

com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: com/google/zxing/client/android/camera/CameraConfigurationUtils.class

这意味着您要添加相同的类 CameraConfigurationUtils.class 两次

检查你的 jar 文件。
如果您有 libs/android-core-3.2.1.jar,您将添加两次相同的类。
这个类在jar里面在 library 里面编译 'com.journeyapps:zxing-android-embedded:3.2.0@aar'

从 libs 文件夹中删除 jar 文件。

关于android - 我的 Android 应用程序出现重复输入错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42206793/

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