-
Notifications
You must be signed in to change notification settings - Fork 7
Minimum Viable Android Environment on Apple Silicon
Joshua Miller edited this page Jun 7, 2022
·
2 revisions
This guide is based on this guide with a couple updates for running on Apple Silicon.
brew update
brew install openjdk@11
brew install android-commandlinetools --cask
sdkmanager "build-tools;30.0.3" "platform-tools" "emulator" "system-images;android-30;google_apis;arm64-v8a" "platforms;android-30"
# verify everything got installed
sdkmanager --list_installed
avdmanager create avd -n "Pixel_4A" -d "pixel_4a" -k "system-images;android-30;google_apis;arm64-v8a"
# verify avd is listed
emulator -list-avds
emulator -avd Pixel_4A