<@UHJJ1PZH6> Maybe a transitive dependency; what’s...
# android
e
@natansalda Maybe a transitive dependency; what’s the output of
./gradlew dependencies
?
n
just this:
Copy code
No configurations

A web-based, searchable dependency report is available by adding the --scan option.

BUILD SUCCESSFUL in 7s
1 actionable task: 1 executed
e
🤔 try
./gradlew :app:dependencies
You’re hoping to see a tree of dependencies for the module in question.
n
still the same as above 🙂
and when I do this:
Copy code
gradle -q dependencies --configuration scm
then build fails
e
What’s the problematic dependency; or are you able to share the
dependencies
block of your build.gradle?
n
not really, this is work project, can't share anything 😕
👍🏽 1
this is library from third party vendor, dependency itself is ok, the problem is that I had it all good, then some other team member added new library version to our project, then I did pull from master, I have all new code, except new version of library 🙂
d
What happens if you try
rm -rf ~/.gradle/caches
and build again?
n
thanks guys for help, I am not sure what happened but after few rebuilding it works 🙂
🎉 1