集成環(huán)信easeui,出現(xiàn):
Error:Execution failed for task ':app:transformResourcesWithMergeJavaResForDebug'.
> com.android.build.api.transform.TransformException: com.android.builder.packaging.DuplicateFileException: Duplicate files copied in APK assets/Icon_start.png
File1: D:\AndroidStudioProjects\MyProject\MiaoXin\app\libs\BaiduLBS_Android.jar
File2: D:\AndroidStudioProjects\MyProject\MiaoXin\easeui\build\intermediates\bundles\default\classes.jar
原因:
libs 下 BaiduLBS_Android.jar ?重復(fù)添加依賴.
從Stack Overflow的如下配置有問題,
packagingOptions {
exclude'META-INF/NOTICE'// will not include NOTICE file
exclude'META-INF/LICENSE'// will not include LICENSE file
// as noted by @Vishnuvathsan you may also need to include
// variations on the file name. It depends on your dependencies.
// Some other common variations on notice and license file names
exclude'META-INF/notice'
exclude'META-INF/notice.txt'
exclude'META-INF/license'
exclude'META-INF/license.txt'
}