Reputation: 165
I have an app that uses 'library 1' and 'library 2' . Let's say library1 uses coil version-1(an image library for example) and library2 uses coil version 2... when implementing both library 1 and library 2 in my app... only the latest version of coil i.e., coil version 2 is downloaded... is there any way to mitigate this issue?
Upvotes: 0
Views: 249
Reputation: 737
AFAIK you cannot have library1
using coil
version-1 and library2
using coil
version-2. Possible approaches:
library1
works with coil
version-2.library2
works with coil
version-1.library2
which has a dependency on coil
version-1.library1
which uses a more recent version of coil
.Upvotes: 1
Reputation: 104
Why do you want coil version-1 ? Graddle always download newest version of the dependency by default.
Upvotes: 0