Skip to content

Instantly share code, notes, and snippets.

@faruktoptas
Created November 11, 2018 05:27
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save faruktoptas/c625ac44b59552a937c6c2821615521d to your computer and use it in GitHub Desktop.
Save faruktoptas/c625ac44b59552a937c6c2821615521d to your computer and use it in GitHub Desktop.
Useful gradle commands
// Depenency graph
./gradlew -q dependencies app:dependencies
@basarik
Copy link

basarik commented Apr 8, 2021

If you see a message like "permission denied";
you can do the following operations:
For git:
git update-index --chmod=+x gradlew
git add .
git commit -m "Changing permission of gradlew"
git push
For local:
chmod +x gradlew

After that, try again ./gradlew -q dependencies app:dependencies

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment