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

后端 未结 20 2451
谎友^
谎友^ 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:12

    In my case I only need to add to project's build.gradle file:

    android {
      packagingOptions {
        exclude 'META-INF/notice.txt'
        exclude 'META-INF/license.txt'
      }
    
       ...
    }
    

提交回复
热议问题