Android Gradle plugin 0.7.0: “duplicate files during packaging of APK”

后端 未结 20 2810
谎友^
谎友^ 2020-11-22 08:51

Using Android Gradle plugin 0.7.0 with the following build.gradle:

buildscript {
    repositories {
        mavenCentral()
    }

    dependenci         


        
20条回答
  •  臣服心动
    2020-11-22 09:01

    I think you need to include only these options in build.gradle:

    packagingOptions {
            exclude 'META-INF/DEPENDENCIES'
            exclude 'META-INF/NOTICE'
            exclude 'META-INF/LICENSE'
        }
    

    p.s same answer from my post in : Error :: duplicate files during packaging of APK

提交回复
热议问题