1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
| adb devices
adb -s cf27456f shell
adb install test.apk
adb install -r demo.apk
adb uninstall cn.com.test.mobile
adb uninstall -k cn.com.test.mobile
adb shell pm list packages
adb shell pm list packages -3
adb shell pm clear cn.com.test.mobile
adb shell am start -ncn.com.test.mobile/.ui.SplashActivity
adb shell dumpsys package
adb shell dumpsys meminfo
adb shell am force-stop cn.com.test.mobile
adb logcat
adb logcat -c
adb reboot
adb get-serialno
adb shell getprop ro.build.version.release
adb shell top -m 10
adb push <local> <remote>
adb pull <remote> <local>
adb bugreport
adb help
|