Android 常见问题
More than one file was found
这种情况属于依赖项中存在多个同名文件,系统不知道选择那个进行编译。
解决办法:
在app目录下的build.gradle文件中添加以下代码
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
}
exclude 什么取决于编译器报什么样的 more than one file was found
本文来自博客园,作者:maplerain,转载请注明原文链接:https://www.cnblogs.com/maplerain/p/16272195.html 博主B站