当前位置:  开发笔记 > 编程语言 > 正文

找不到参数[{module = support-v4}]的方法exclude()

如何解决《找不到参数[{module=support-v4}]的方法exclude()》经验,为你挑选了1个好方法。

我试图在关闭即时运行的情况下运行我的应用程序,但是我收到此错误:

错误:任务':app:transformClassesWithJarMergingForDebug'的执行失败.

com.android.build.api.transform.TransformException:java.util.zip.ZipException:重复条目:android/support/v4/view/KeyEventCompatEclair.class

这是我的gradle文件:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.2"

    defaultConfig {
        applicationId "com.jua.app"
        minSdkVersion 16
        targetSdkVersion 21
        versionCode 1
        versionName "1.0"
        multiDexEnabled true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.4.0'
    compile project(path: ':app_Data')
    compile files('libs/android-support-v4.jar')
}

我尝试了这个线程的解决方案:

compile files('libs/android-support-v4.jar'){
    exclude module: "support-v4"
}

现在,当我尝试同步gradle.build时,我收到此错误:

错误:(29,0)无法在org.gradle.api.internal.file.collections.DefaultConfigurableFileCollection类型的文件集合中找到参数[{module = support-v4}]的方法exclude().打开文件

我现在有点失落,如果有人知道如何解决这个问题我会很感激.

编辑

我删除了

编译文件('libs/android-support-v4.jar')

完全,我仍然得到第一个错误.



1> 小智..:

这是一个语法问题.您正在调用exclude的闭包被解释为files()方法的参数,这是不正确的.应该是这样的

compile (files('libs/android-support-v4.jar')){
  exclude module: "support-v4"
}


同样适用于`compile project(':project name')`和`compile(project(':project_name')){{排除组:'com.android.support',模块:'support-annotations'}`
推荐阅读
ar_wen2402851455
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有