TransformException:java.util.zip.ZipException:重复项:android / support / annotation / StyleRes.class

Waqas Arif |

失败:生成失败,发生异常。

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

    com.android.build.api.transform.TransformException:java.util.zip.ZipException:重复条目:android / support / annotation / StyleRes.class

  • 尝试:使用--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文件一起发布。ANyone可以共享链接,但我没有在网络上找到它的溶胶。

IntelliJ Amiya

您可以使用

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

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

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章