More than one file was found with OS independent path ‘META-INF/plugin.xml’
看字面意思就知道这是文件重复,一行代码解决,将重复的文件移除
打开build.gradle在android层级下添加:
apply plugin: 'com.android.application'
android {
...
//此处添加
//注意“META-INF/”后面跟的是你IDE报错的文件
packagingOptions {
exclude 'META-INF/plugin.xml'
}
}
dependencies {
...
}