Last active
September 6, 2025 17:57
-
-
Save joaquinicolas/c268882c00394e53a4e53944d6e28a69 to your computer and use it in GitHub Desktop.
Revisions
-
joaquinicolas revised this gist
Dec 9, 2020 . 1 changed file with 6 additions and 6 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,16 +1,16 @@ # Install jdk 8 ``` sudo pacman -S jdk8-openjd ``` ## Set jdk-8 as default ``` sudo archlinux-java set java-8-openjdk ``` # Install yay ``` git clone https://aur.archlinux.org/yay.git @@ -22,18 +22,18 @@ makepkg -si ``` yay -S android-sdk android-sdk-platform-tools android-sdk-build-tools ``` ## Give permissions over Android sdk folder ``` sudo chmod -R 777 /opt/android-sdk ``` ## Accept sdk licenses ``` opt/android-sdk/tools/bin/sdkmanager --licenses ``` # [OPTIONAL]:Update watchers limit ``` echo "fs.inotify.max_user_watches=524288" >> /etc/sysctl.conf -
joaquinicolas renamed this gist
Dec 9, 2020 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
joaquinicolas created this gist
Dec 9, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,41 @@ #Install jdk 8 ``` sudo pacman -S jdk8-openjd ``` ##Set jdk-8 as default ``` sudo archlinux-java set java-8-openjdk ``` #Install yay ``` git clone https://aur.archlinux.org/yay.git cd yay makepkg -si ``` #Install android tools ``` yay -S android-sdk android-sdk-platform-tools android-sdk-build-tools ``` ##Give permissions over Android sdk folder ``` sudo chmod -R 777 /opt/android-sdk ``` ##Accept sdk licenses ``` opt/android-sdk/tools/bin/sdkmanager --licenses ``` [OPTIONAL]:Update watchers limit ``` echo "fs.inotify.max_user_watches=524288" >> /etc/sysctl.conf sudo sysctl -p /etc/sysctl.conf ```