I am getting Program type already present: dagger.Binds while building my app.
In my project I have 2 modules mod1, mod2
mod1 - depends on common-release-1.0.5.0.aar(its using dagger-2.7.jar internally): compile(name: 'common-release-1.0.5.0', ext: 'aar')
mod2 - it has a direct dagger dependency(implementation 'com.google.dagger:dagger:2.23') and also depends on mod1(implementation project(':mod1'))
As I can't change the .aar file how to resolve this situation?