Android 常见问题

More than one file was found

image
这种情况属于依赖项中存在多个同名文件,系统不知道选择那个进行编译。

解决办法:
在app目录下的build.gradle文件中添加以下代码

packagingOptions {     exclude 'META-INF/DEPENDENCIES' } 

exclude 什么取决于编译器报什么样的 more than one file was found