ADB Commands
ADB Commands
lay.id adb shell cat /proc/version To get the incremental platform no: adb shell getprop ro.build.version.increment
al adb shell getprop ro.product.model adb shell getprop ro.product.brand adb shell getprop ro.product.device To register device : adb shell am broadcast -a android.intent.action.register -e
username <username> -e password <passwd> -n com.amazon.kdsotter/.commandCenter To Deregister device : adb shell am broadcast -a android.intent.action.deregiste
r -n com.amazon.kdsotter/.commandCenter To unlock a device : adb shell input keyevent 82 To turn on airplane mode : adb shell am broadcast -a android.intent.action.FMODE
-e fmode off -n com.amazon.kdsotter/.commandCenter To turn off airplane mode : adb shell am broadcast -a android.intent.action.FMOD
E -e fmode on -n com.amazon.kdsotter/.commandCenter To turn on wifi : adb shell am broadcast -a android.intent.action.wifi -e wifi t
rue -n com.amazon.kdsotter/.commandCenter or adb shell svc wifi enable To turn off wifi : adb shell am broadcast -a android.intent.action.wifi -e wifi
false -n com.amazon.kdsotter/.commandCenter or adb shell svc wifi disable To connect to wifi with ssid: adb shell am broadcast -a android.intent.action.wificonnect -e ssid belkin.3296
-e password 4ea28698 -n com.amazon.kdsotter/.commandCenter Clear application data for a package : adb shell pm clear <package>