navi/cheats/android.cheat

28 lines
551 B
Text
Raw Normal View History

2019-10-11 17:33:16 +00:00
% android, device
# Get property
adb -s <device> shell getprop <property>
# Install APK
adb -s <device> install -r <path>
# Uninstall package
adb -s <device> uninstall -r <package>
# Clear user data for package
adb -s <device> shell pm clear <package>
# Dispatch a deep-link / open URI
adb -s <device> shell am start <uri>
$ device: adb devices --- --headers 1 --column 1
% android, emulator
# Start emulator
"$ANDROID_HOME/tools/emulator" -avd <emulator> -netdelay none -netspeed full
2019-10-14 16:54:09 +00:00
$ emulator: "$ANDROID_HOME/tools/emulator" -list-avds