Error:duplicate files during packaging of APK app'

Error:duplicate files during packaging of APK app\build\outputs\apk\app-debug-unaliapp

这个错误的解决方法是:在app的build.gradle文件中增长如下内容:gradle

    packagingOptions {
        exclude 'META-INF/DEPENDENCIES.txt'
        exclude 'META-INF/LICENSE.txt'
        exclude 'META-INF/NOTICE.txt'
        exclude 'META-INF/NOTICE'
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/DEPENDENCIES'
        exclude 'META-INF/notice.txt'
        exclude 'META-INF/license.txt'
        exclude 'META-INF/dependencies.txt'
        exclude 'META-INF/LGPL2.1'
    }
相关文章
相关标签/搜索