Skip to content

Instantly share code, notes, and snippets.

View iChenwin's full-sized avatar
🛴

Wayne Chen iChenwin

🛴
View GitHub Profile
@jpswade
jpswade / install_adb.sh
Last active July 4, 2024 09:38
Install android on centos
#!/bin/sh
# yum install android-tools -y
yum install java-1.8.0-openjdk-devel
mkdir -p android-sdk-linux
cd android-sdk-linux
# @see https://developer.android.com/studio/index.html
wget --output-document=android-sdk.zip --quiet https://dl.google.com/android/repository/sdk-tools-linux-3859397.zip
unzip android-sdk.zip
rm -f android-sdk.zip
yes | tools/bin/sdkmanager --licenses