Skip to content

Instantly share code, notes, and snippets.

@geekwolverine
Forked from dianjuar/android_on_arch.md
Created February 1, 2023 09:34
Show Gist options
  • Select an option

  • Save geekwolverine/391649d58a0ed934e7196cbdc04853e7 to your computer and use it in GitHub Desktop.

Select an option

Save geekwolverine/391649d58a0ed934e7196cbdc04853e7 to your computer and use it in GitHub Desktop.
install android SDK on arch linix

Install Android SDK on Arch Linux

1. Download Android SDK on your computer

yaourt android-sdk-platform-tools
yaourt android-udev
yaourt android-sdk

2. Create global variables on system

On ~/.bashrc of you are using bash or ~/.zshrc if you are using zsh in the last line put

export ANDROID_HOME=/opt/android-sdk
export PATH=$PATH:$ANDROID_HOME/tools
export PATH=$PATH:$ANDROID_HOME/platform-tools

3. Restart your console and you are ready to go.

Written with StackEdit.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment