I have 2 libs that I know that has dependency to different versions of the 3rd one. I get a compile error of Duplicate class
.
CodePudding user response:
try this:
implementation(Lib A){
exclude module : 'lib c'
}
I have 2 libs that I know that has dependency to different versions of the 3rd one. I get a compile error of Duplicate class
.
CodePudding user response:
try this:
implementation(Lib A){
exclude module : 'lib c'
}