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
I had the same problem. The way I fixed it is adding the packagingOptions in app gradle as described in Duplicated file rxjava.properties
packagingOptions
android { defaultConfig { } buildTypes { } packagingOptions{ exclude 'META-INF/rxjava.properties' } }