Install Java
using homebrew - brew cask install java Install Android Studio
using homebrew - brew cask install android-studio Install Android SDK
using homebrew - brew cask install android-sdk Install gradle
##Direct Link (or) brew install gradle
export PATH=$ANDROID_HOME/tools:$PATH
export PATH=$ANDROID_HOME/platform-tools:$PATH
Add these three to ~/.zshrc file and run source ~/.zshrc
##Build Types - Environment
Debug Release
en Useful Aliases for Dev Add these lines to your ~/.zshrc file
alias build="./gradlew clean assembleDebug"
minSdkVersion = 19
targetSdkVersion = 28
compileSdkVersion = 28
Vrushali Raut, Adit Lal