Android Studio
Android Studio is the development platform for Android.
It's best installed from its download site.
Beyond here you will definitely need a Java Runtime.
Install SDK and CLI tools
To install the Android SDK:
- Open Android Studio.
- Navigate to More Actions → SDK Manager.
- Select an Android SDK, eg. Android 13.
- Update your shell profile eg.
~/.zshrc
with:
shell
export ANDROID_HOME=$HOME/Library/Android/sdk
export PATH=$PATH:$ANDROID_HOME/emulator
export PATH=$PATH:$ANDROID_HOME/platform-tools
To include the tools in the PATH.