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

来源:互联网 发布:sql语句优化方法 编辑:程序博客网 时间:2024/06/01 09:19

在builder.gradle 里面添加如下代码:

android {    packagingOptions {        exclude 'META-INF/DEPENDENCIES.txt'        exclude 'META-INF/DEPENDENCIES'        exclude 'META-INF/dependencies.txt'        exclude 'META-INF/LICENSE.txt'        exclude 'META-INF/LICENSE'        exclude 'META-INF/license.txt'        exclude 'META-INF/LGPL2.1'        exclude 'META-INF/NOTICE.txt'        exclude 'META-INF/NOTICE'        exclude 'META-INF/notice.txt'    }}

 

0 0