任务':app:transformClassesWithJarMergingForDebug的执行失败 [英] Execution failed for task ':app:transformClassesWithJarMergingForDebug

查看:126
本文介绍了任务':app:transformClassesWithJarMergingForDebug的执行失败的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我创建了一个Android应用程序&在API级别21以上运行。
但是没有在API级别21以下运行。

I am created an android app & is running above API level 21. But not running on below API level 21.

这是错误日志:

错误:任务':app:transformClassesWithJarMergingForDebug'的执行失败。
com.android.build.api.transform.TransformException:java.util.zip.ZipException:重复条目:android / support / v4 / accessibilityservice / AccessibilityServiceInfoCompat $ AccessibilityServiceInfoVersionImpl.class
帮助我完成

Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug'. com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: android/support/v4/accessibilityservice/AccessibilityServiceInfoCompat$AccessibilityServiceInfoVersionImpl.class Help me through

以下是我的gradle代码:

Below is my gradle code:

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'c​​om.android.support:multidex:1.0.1'

compile 'com.android.support:multidex:1.0.1'

I n AndroidManifest.xml 添加以下行 android:name

In Your AndroidManifest.xml add this lines 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
}

这篇关于任务':app:transformClassesWithJarMergingForDebug的执行失败的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆