More than one file was found with OS independent path 'META-INF/rxjava.properties'

今天在打包apk的时候突然报错:More than one file was found with OS independent path 'META-INF/rxjava.properties'。截图如下:

More than one file was found with OS independent path 'META-INF/rxjava.properties'

解决这个问题也挺简单的:

More than one file was found with OS independent path 'META-INF/rxjava.properties'

在如图所示的app的build.gradle文件的android标签内加上红框里的几行代码就可以了。我也把代码复制出来方便大家复制粘贴。

packagingOptions {//加上这写代码
        pickFirst 'META-INF/*'
}

然后点击一下Sync Now就可以了。

如果本文对您有所帮助,麻烦点击一下右侧的点赞按钮,谢谢。