Got a slight problem here with multiple references of the same dependency - Dagger, I have a binding library that uses dagger and specific version, more specifically latest version, reason for this is a method was introduced that is being called from another dependency so I need that version, this was fine until I needed to include Xamarin.Firebase.Messaging and as such this also has a dependency on dagger i.e. Xamarin.Google.Dagger and its using a much earlier version and as such I am getting an exception at compile time because both Dagger references are being included...
csharp
Type dagger.Binds is defined multiple times: obj\Debug\110\lp\3\jl\dagger-2.30.1.jar:dagger/Binds.class, obj\Debug\110\lp\91\jl\dagger.jar:dagger/Binds.class
How can I resolve this besides trying to use only one version of dagger since I need the latest in my binding library and I hardly change the version in firebase nuget being included.... please help
