Duplicate Zip Entry after Gradle Plugin v0.13.1

前端 未结 4 986
执笔经年
执笔经年 2020-12-06 01:39

I\'ve been using the Gradle Android plugin v0.12 but I decided to upgrade to the new version, because I needed the new functionality (and the improved speed is always a plus

4条回答
  •  旧时难觅i
    2020-12-06 02:23

    The problem is in libs that you're using.

    Add in gradle file:

    android {
        packagingOptions {
            exclude 'META-INF/DEPENDENCIES'
            exclude 'META-INF/notice.txt'
            exclude 'META-INF/LICENSE.txt'
            exclude 'META-INF/MANIFEST.MF'
            exclude 'META-INF/LICENSE'
            exclude 'META-INF/NOTICE'
        }
    }
    

提交回复
热议问题