How to enable Stay awake in the developer options using ADB?

前端 未结 6 2044
野性不改
野性不改 2020-12-08 22:05

I\'m trying to find a way to enable the Developer options -> Stay awake option via ADB. The solution that I found was to find a way to open developers opti

相关标签:
6条回答
  • 2020-12-08 22:18

    Set the 'keep awake while plugged in' setting.

    adb shell svc power stayon true  
    
    0 讨论(0)
  • 2020-12-08 22:28
    adb shell am start -n com.android.settings/.DevelopmentSettings
    
    0 讨论(0)
  • 2020-12-08 22:29

    try this:

    setprop persist.sys.usb.config mtp,adb
    
    0 讨论(0)
  • 2020-12-08 22:31

    Okay I know it is not what MiSo was asking but I think it may be relevant, I have created an app that will enable/dissable this 'Stay awake' setting as you connect/disconnect ADB.

    The code is available open-source here: ABD-Stay_Awake

    0 讨论(0)
  • 2020-12-08 22:36

    You can enable Stay awake option without having to use UI with the following command:

    adb shell settings put global stay_on_while_plugged_in 3
    
    0 讨论(0)
  • 2020-12-08 22:38

    OK, I found a way:

    adb shell am start -S com.android.settings/.Settings\$DevelopmentSettingsActivity
    

    I used this : https://github.com/android/platform_packages_apps_settings/blob/master/AndroidManifest.xml

    to find the name of the Activity I needed.

    Now I have to figure out how to choose the stay awake option by createing a touch event or something...

    0 讨论(0)
提交回复
热议问题