美文网首页
More than one file was found wit

More than one file was found wit

作者: andcoder | 来源:发表于2017-12-14 20:37 被阅读19次

在运行app时,android studio报如下错误

Error:Execution failed for task ':app:transformResourcesWithMergeJavaResForDebug'.
> More than one file was found with OS independent path 'META-INF/rxjava.properties'

解决方法:在对应的module下,找到defaultConfig项,添加如下配置可解决:

    defaultConfig {
        ...

        packagingOptions {
            exclude 'META-INF/rxjava.properties'
        }
        
        ...
    }

相关文章

网友评论

      本文标题:More than one file was found wit

      本文链接:https://www.haomeiwen.com/subject/ucslwxtx.html