Change theme
Help
Press space for more information.
Show links for this issue (Shortcut: i, l)
Copy issue ID
Previous Issue (Shortcut: k)
Next Issue (Shortcut: j)
Sign in to use full features.
Vote: I am impacted
Notification menu
Refresh (Shortcut: Shift+r)
Go home (Shortcut: u)
Pending code changes (auto-populated)
[ID: 558956]
View issue level access limits(Press Alt + Right arrow for more information)
Unintended behavior
View staffing
Description
Our project has two plugins which request incompatible versions of the
google-api-client
library, which is transitively required by basically all Google Cloud SDK libraries.The gradle-play-publisher plugin requires
com.google.api-client:google-api-client:2.2.0
, andgradle-test-lab-plugin
requirescom.google.api-client:google-api-client:1.30.9
. When running a test using a Test Lab managed device, the build fails with the following:Ideally both plugins would shade their dependencies, for example by using the Shadow plugin . This is needed because Gradle does not isolate classpaths between plugins.
I've also filed an issue with the Play Publisher plugin.