adb
Table of Contents
- reference
- Utilizing ADB for daily tasks
1. How to get device ip?
adb shell ip -f inet addr show wlan2
2. How to send text to device?
adb shell input text hello
3. How to send key event to device?
More keycodes can see KeyEvent.
# 66: enter adb shell input keyevent 66
4. How to take a screenshot?
adb shell screencap /sdcard/Pictures/$(date +%s).png