Hello everyone!
There some useful operation for adb in my weekday job, hope to help you.
1. show all devices connect by adb
adb devices
2.select a devices to Excuting an order
adb -s deviceid
3.install a app
adb install -r <apk path>
4.uninstall a app
adb uninstall <packageName>
5.get a...