-
Notifications
You must be signed in to change notification settings - Fork 2
(ADB) Interact with adnroid device connected
Richard Lasjunies edited this page Dec 31, 2017
·
3 revisions
- list all the connected devices
adb devices -l
-
install
adb -s 4300f45996cec075 install -d -r ***kct/platforms/android/build/outputs/apk/release/kct-signed.apk -
remove
adb -s 4300f45996cec075 uninstall ***kct/platforms/android/build/outputs/apk/release/kct-signed.apk -
list all package from the shell
pm list packages -f
-
open a remote shell using adb
adb shell -
open a remote shell on a specific device
adb -s 4300f45996cec075 shell -
then list the IP address
ip address -
quit the shell
exit