- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我的项目工作正常,但我添加了 Direct Pay jar 文件。我喜欢这样的错误:-
Error:Execution failed for task ':app:packageAllDebugClassesForMultiDex'. java.util.zip.ZipException: duplicate entry: com/toml/dp/util/AES128Bit.class
我的gradle文件:-
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
dexOptions {
preDexLibraries = false
}
defaultConfig {
applicationId "shoppingmazza.android.catalyst.com.shoppingmazza"
minSdkVersion 16
targetSdkVersion 23
versionCode 2
versionName "2.0"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/NOTICE'
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
}
repositories {
mavenCentral()
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
compile files('libs/fluent-hc-4.5.jar')
compile files('libs/httpclient-4.5.jar')
compile files('libs/httpclient-cache-4.5.jar')
compile files('libs/httpclient-win-4.5.jar')
compile files('libs/httpcore-4.4.1.jar')
compile files('libs/httpmime-4.5.jar')
compile files('libs/jna-4.1.0.jar')
compile files('libs/jna-platform-4.1.0.jar')
compile 'com.daimajia.slider:library:1.1.5@aar'
compile 'com.squareup.picasso:picasso:2.3.2'
compile 'com.nineoldandroids:library:2.4.0'
compile files('libs/commons-net-3.0.1.jar')
compile 'com.squareup.picasso:picasso:2.5.2'
compile files('libs/aes1.4.jar')
compile files('libs/aes5.0.jar')
compile files('libs/aes6.0.jar')
compile 'com.android.support:multidex:1.0.1'
}
最佳答案
仅使用 libs/aesX.X.jar 中的一个 jar 版本。在编译时会多次找到 AES128Bit.class,因为包含同一库的 3 个 jar
关于java - :app:packageAllDebugClassesForMultiDex FAILED in android studio,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34545722/
我尝试使用proguard,但收到gradle错误。 请帮助我确定错误并解决。我如何从buid dex中排除重复项。 * What went wrong: Execution failed for t
当我尝试部署时,这是怎么发生的?这门课在哪个图书馆? 注意:它编译和构建都很好,但只有在我尝试部署时才会出现此错误。 :myProject:packageAllDebugClassesForMulti
我在 Android Studio 中使用我的 Android 应用程序时遇到一个奇怪的问题。在添加新文件并对 build.gradle 进行一些更新后,一切似乎都运行良好。 我看到的错误消息如下:
我正在尝试对项目使用新的 android multidex 支持。我对此异常有一些疑问: 错误:任务“:shineV3:packageAllDebugClassesForMultiDex”执行失败。
我的项目工作正常,但我添加了 Direct Pay jar 文件。我喜欢这样的错误:- Error:Execution failed for task ':app:packageAllDebugCla
我正在尝试在我的应用程序中实现 youtube 搜索。我遇到了以下错误 Error:Execution failed for task ':packageAllDebugClassesForMulti
当我尝试使用 YouTubeData API 构建应用程序时,出现“:app:packageAllDebugClassesForMultiDex”错误。我研究了其他几个涵盖此错误的线程,我得出的结论是
我不知道如何解决这个错误 错误:任务“:app:packageAllDebugClassesForMultiDex”执行失败。 > java.util.zip.ZipException:重复条目:co
我不确定这个错误是什么意思。 Execution failed for task ':excelSior:packageAllDebugClassesForMultiDex'. > java.util
我有这个错误: Execution failed for task ':app:packageAllDebugClassesForMultiDex'. > java.util.zip.ZipExcep
最近我更新了我的Android Studio,出现了这个错误。有什么建议吗? 非常感谢。 错误:任务 ':app:packageAllDebugClassesForMultiDex' 执行失败。 ja
我不确定这个错误是什么意思。 Execution failed for task ':excelSior:packageAllDebugClassesForMultiDex'. > java.util
我的项目运行良好,当我在我的项目中添加波纹管代码时出现错误,我添加: compile 'joda-time:joda-time:2.7' compile 'net.danlew:android.jod
当我运行集成了用于照片编辑选项的 Creative SDK 的应用程序时,出现以下错误。 Error:Execution failed for task ':app:packageAllDebugCl
我尝试将 Apache POI 包含在我的 Android 项目中,但出现以下错误: Error:Execution failed for task ':app:packageAllDebugClas
我正在 Android Studio 中使用 gradle 为家庭自动化开发 android 应用程序。当我构建项目时没有问题,但是当我尝试运行项目时,出现了这样的错误: Error:Executio
我使用名为 Picasso 的外部库、主题 Appcompat、android Recyclerview、CardView 今天早上我的应用程序编译并运行良好,但随后我导入了另一个项目,让我可以选择:
我正在尝试在我的项目中使用 Amazon AWS 服务。我添加了依赖项;该项目构建良好。当我在手机上运行该应用程序时,出现此错误: Error:Execution failed for tas
我是一名优秀的程序员,十分优秀!