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

后端 未结 7 1821
渐次进展
渐次进展 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 19:01

    I also have the same problem but easily removed duplicated "comment" all Rxjava related dependencies that it doesn't use in my code.

    //RxJava removes or comment duplicated and not used dependencies.
          //  implementation 'com.squareup.retrofit2:adapter-rxjava:2.4.0'
           // implementation 'io.reactivex.rxjava2:rxandroid:2.0.2'
           // implementation 'io.reactivex.rxjava2:rxjava:2.1.13'
    

提交回复
热议问题