How to resolve Duplicate files copied in APK META-INF/rxjava.properties

后端 未结 7 1847
渐次进展
渐次进展 2020-12-18 18:20

I am using rxjava and rxvolley on my android aplication. When I try to run it I get this error

Execution failed for task \':testapp:transformResourcesWithMer         


        
7条回答
  •  没有蜡笔的小新
    2020-12-18 18:50

    I also have this problem ,I also used the same method as you ,but because I hava two module ,I only chang it in the module which dependency Rxjava,Finally I I fixed it is adding the packaginOptions in app gradle

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

提交回复
热议问题