当前位置: 首页 > 知识库问答 >
问题:

找到多个与操作系统无关的路径为“meta-inf/rxjava.properties”的文件

白青青
2023-03-14

在运行应用程序时,发现了多个与操作系统无关的路径为'meta-inf/rxjava.properties'的文件。如何从android studio中删除重复文件?

共有1个答案

江育
2023-03-14

我也有同样的问题。我修复它的方法是在app gradle中添加packagingOptions,如重复文件rxjava.properties所述

android {
      defaultConfig {
      }
      buildTypes {
      }
      packagingOptions{
      exclude 'META-INF/rxjava.properties'
      }
}
 类似资料: