anybody knows what’s the best way to figure out wh...
# announcements
e
anybody knows what’s the best way to figure out which dependencies on your 20+ modules android project resolve to just jcenter?
b
remove jcenter repo and see what fails to resolve
e
maybe also deleting local gradle cache?
but that way I can only see the first one that fails, not all of them at once
b
You're right. There should be soe way to get a full report of gradle failures. Google around
v
If you don't actually try to build, but use the
dependencies
task, you will see all that failed to resolve. Another way would be to move
jcenter()
to be the last repo in the list so that others are preferred and then look at the build scan which should tell you which dependency was taken from which repository iirc.
e
thanks!
ended up opening 8 github issues..