Skip to content

Instantly share code, notes, and snippets.

@mahdi-hosseinnion
mahdi-hosseinnion / android-cheat-sheet
Last active November 18, 2021 06:57
some of command and codes thats may come handy in future
*run gradle with more info
Go to your Android project directory to execute the gradle command below:(in linux) windows = gradlew.bat
./gradlew assembleDebug --info
Note:If you have permission problems while executing the above command,you can use this to deal with it:
chmod +x gradlew
*gradle version infos
./gradlew --version