Skip to content

Instantly share code, notes, and snippets.

View Jiayi-Pan's full-sized avatar
🧑‍🍳
Real artists ship

Jiayi Pan Jiayi-Pan

🧑‍🍳
Real artists ship
View GitHub Profile
@nhtua
nhtua / 00.install-android-sdk.sh
Last active October 13, 2025 11:44
Run a Headless Android Device on Ubuntu server (no GUI)
#!/bin/bash -i
#using shebang with -i to enable interactive mode (auto load .bashrc)
set -e #stop immediately if any error happens
# Install Open SDK
apt update
apt install openjdk-8-jdk -y
update-java-alternatives --set java-1.8.0-openjdk-amd64
java -version