FAILURE:构建失败,出现异常。

  • 出了什么问题:
    任务“:app:transformClassesWithJarMergingForDebug”执行失败。

  • 尝试:
    使用 --stacktrace 选项运行以获取堆栈跟踪。使用 --info 或 --debug 选项运行以获得更多日志输出。

  • 构建失败

    总时间:21.555 秒
    gradle.build:
    apply plugin: 'com.android.application'
    
    android {
        compileSdkVersion 23
        buildToolsVersion "23.0.2"
        //useLibrary 'org.apache.http.legacy'
        packagingOptions {
            exclude 'META-INF/DEPENDENCIES'
            exclude 'META-INF/NOTICE'
            exclude 'META-INF/LICENSE'
            exclude 'META-INF/NOTICE.txt'
            exclude 'META-INF/LICENSE.txt'
        }
    
    defaultConfig {
        applicationId "com.cybussolutions.wikki.afripay"
        minSdkVersion 15
        targetSdkVersion 23
        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.2.0'
        compile 'com.android.support:design:23.2.0'
        } //Update code formatting
    

    任何人都可以有答案。它给出了编译错误。错误日志与 gradle 文件一起发布。任何人都可以分享链接,我没有在网上找到它的 sol。

    最佳答案

    您可以使用

    compile 'com.android.support:appcompat-v7:23.1.0'
    compile 'com.android.support:design:23.1.0'
    

    然后 Clean-Rebuild-Sync 你的项目。

    关于android - TransformException : java. util.zip.ZipException : duplicate entry: android/support/annotation/StyleRes. 类,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35696253/

    10-13 04:37