Skip to content

Instantly share code, notes, and snippets.

@dcalixto
Forked from dianjuar/android_on_arch.md
Created April 25, 2020 09:47
Show Gist options
  • Select an option

  • Save dcalixto/63e767d405b9c627f1ffd6959d8ed5a6 to your computer and use it in GitHub Desktop.

Select an option

Save dcalixto/63e767d405b9c627f1ffd6959d8ed5a6 to your computer and use it in GitHub Desktop.

Revisions

  1. @dianjuar dianjuar created this gist Apr 10, 2017.
    21 changes: 21 additions & 0 deletions android_on_arch.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,21 @@
    # 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](https://stackedit.io/).