Android Studio.Duplicate files copied in APK META-INF/notice.txt

来源:互联网 发布:禁止修改ip软件 编辑:程序博客网 时间:2024/05/16 03:51

[转自]http://stackoverflow.com/questions/22467127/error-duplicate-files-during-packaging-of-apk#【备忘】

Android Studio. I'm getting this kind of error during application run.

Error:Execution failed for task ':app:packageDebug'. Duplicate files copied in APK META-INF/notice.txt

build.gradle

android {...    packagingOptions {        exclude 'META-INF/DEPENDENCIES'        exclude 'META-INF/NOTICE'        exclude 'META-INF/LICENSE'        exclude 'META-INF/LICENSE.txt'        exclude 'META-INF/NOTICE.txt'        exclude 'META-INF/ASL2.0'        exclude 'META-INF/notice.txt'        exclude 'META-INF/license.txt'    }}

0 0
原创粉丝点击