I got this error during build in android studio:
Error:Execution failed for task ':app:transformResourcesWithMergeJavaResForDebug'.
More than one file was found with OS independent path 'android/databinding/DataBindingComponent.java'
I used this library to apply generic adapter with databinding.
My app already turn on databinding
dataBinding {
enabled = true
}
The example from this library works fine, but don't know why it duplicates DataBindingComponent
in my app.
Is there any clue to figure out it?