How to turn off Wifi via ADB?

前端 未结 13 2192
北荒
北荒 2020-11-29 17:37

Im automating a testing procedure for wifi calling and I was wondering is there a way to turn off/on wifi via adb?

I would either like to disable/enable wifi or kill

13条回答
  •  [愿得一人]
    2020-11-29 17:54

    All these input keyevent combinations are SO android/hardware dependent, it's a pain.

    However, I finally found the combination for my old android 4.1 device :

    adb shell am start -a android.intent.action.MAIN -n com.android.settings/.wifi.WifiSettings
    adb shell "input keyevent KEYCODE_DPAD_LEFT;input keyevent KEYCODE_DPAD_RIGHT;input keyevent KEYCODE_DPAD_CENTER"
    

提交回复
热议问题