- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我创建了一个 Android 应用程序并且运行在 API 级别 21 以上。但不能在 API 级别 21 以下运行。
这是错误日志:
错误:任务 ':app:transformClassesWithJarMergingForDebug' 执行失败。 com.android.build.api.transform.TransformException:java.util.zip.ZipException:重复条目:android/support/v4/accessibilityservice/AccessibilityServiceInfoCompat$AccessibilityServiceInfoVersionImpl.class帮助我度过难关
下面是我的gradle代码:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
defaultConfig {
applicationId "*******"
minSdkVersion 16
targetSdkVersion 23
multiDexEnabled true
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
useProguard true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
dexOptions {
javaMaxHeapSize "4g"
preDexLibraries = false
}
packagingOptions {
exclude 'META-INF/NOTICE.txt' // will not include NOTICE file
exclude 'META-INF/LICENSE.txt' // will not include LICENSE file
}
}
dependencies {
compile fileTree(exclude: 'android-support-*.jar', dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile project(':simple-crop-image-lib')
// compile 'com.github.navasmdc:MaterialDesign:+'
compile project(':material-login')
compile 'com.android.support:multidex:1.0.1'
compile ('com.android.support:appcompat-v7:23.4.0'){
exclude module: 'support-v4'
}
}
最佳答案
首先编译构建
compile 'com.android.support:multidex:1.0.1'
在你的 AndroidManifest.xml 添加这行 android:name
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme"
android:name="android.support.multidex.MultiDexApplication"
>
并且在你的build.gradle中添加
dexOptions {
//incremental = true;
preDexLibraries = false
javaMaxHeapSize "4g"
}
packagingOptions {
exclude 'META-INF/NOTICE.txt' // will not include NOTICE file
exclude 'META-INF/LICENSE.txt' // will not include LICENSE file
}
关于java - 任务 ':app:transformClassesWithJarMergingForDebug 执行失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38765538/
我决定将adodeal集成到应用程序中,按照说明进行了所有操作,但是结果仍然相同: Error:Execution failed for task ':app:transformClassesWith
我尝试使用 Firebase 平台开发带有通知的简单应用程序。我收到了错误 :app:transformClassesWithDexForDebug,我通过将行 multiDexEnabled tru
我将整个项目复制到一个新目录中,然后在新目录中更新了平台和所有 SDK(通过 Android Studio),我还添加了对 Android v4 的支持,现在我遇到了构建错误(主要与 v4 相关) )
我目前正在开发一个 Android 应用程序,但每当我尝试加载某些 jar 文件时,我都会收到以下错误: Error:Execution failed for task ':app:transform
我的项目与包含的这些库完美配合: // Support libraries compile 'com.android.support:support-v4:23.1.0' compile 'com.a
我在重新创建的新项目中遇到 Android Studio 构建问题。请按照我所做的去做,如果有人知道如何继续,请告诉我! 我开始了一个新项目,选择“抽屉导航 Activity ”作为我的初始起点(可以
我正在从 Eclipse 导入我的项目,在构建 APK 时发现以下错误。 错误:任务执行失败 com.android.build.api.transform.TransformException: j
在我的应用程序中,我使用 graphhopper 和 buttombar。这个生动的解决方案是 graphhopper 依赖项之一。 错误:任务“:app:transformClassesWithJa
我在我的项目中发现了这个错误,但没有得到它出现在哪里? 图书馆: 错误: 最佳答案 关键字 - 重复条目,与Jar合并,和android/support/v4。 libs/ 目录中似乎存在一个 Jar
我创建了一个 Android 应用程序并且运行在 API 级别 21 以上。但不能在 API 级别 21 以下运行。 这是错误日志: 错误:任务 ':app:transformClassesWithJ
我正在尝试将 Microsoft Azure 移动服务添加到我现有的 Android 应用程序中。在我的文件夹中添加 .jar 文件后。我收到错误: Execution failed for task
尝试运行项目时遇到错误 Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug'. > com.and
抱歉,如果我问了一个重复的问题,但我找不到解决此错误的方法。我浏览了 stackoverflow、gradle 站点、android 博客、谷歌搜索,但几个小时都没有找到有效的解决方案。我是 Andr
我在android studio中制作了一个项目,但突然发生了错误 我今天没有在build.gradle中添加gradle,并且在我构建项目的早晨没有问题 Error:Execution failed
dependencies { compile fileTree(include: ['*.jar'], dir: 'libs') testCompile 'junit:junit:4.
我不知道为什么会这样,但是当我想运行一个项目时,我得到这个消息错误: Error:Execution failed for task ':transformClassesWithJarMergingF
这个问题在这里已经有了答案: TransformException duplicate entry for common.annotations.Beta (3 个答案) 关闭 6 年前。 在 an
我尝试在 Android Studio 的项目中使用 unirest。 他们在他们的网站上写道: Don't forget to also install the dependencies (org.
美好的一天。在 AndroidStudio 中更新 google 存储库后,我有一个问题 > Error:Execution failed for task ':app:transformClasse
我已经尝试编译并且没有错误,但是当我想运行该应用程序时却出现了这个错误: Error:Execution failed for task ':app:transformClassesWithJarMe
我是一名优秀的程序员,十分优秀!