Created
November 11, 2018 05:27
-
-
Save faruktoptas/c625ac44b59552a937c6c2821615521d to your computer and use it in GitHub Desktop.
Useful gradle commands
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Depenency graph | |
./gradlew -q dependencies app:dependencies |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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