How to make android device always in wake mode?

后端 未结 7 1274
名媛妹妹
名媛妹妹 2021-02-07 04:46

After successful root of device. Now, I need to make device always in wake state i.e. always visibility of UI and no black screen or any daydream screens. To do so I think I\'ve

相关标签:
7条回答
  • 2021-02-07 05:28

    If you want to increase screen timeout via adb shell command follow below steps:

    Steps

    1. Turn on USB debugging
    2. Connect android device through usb cable
    3. Change directory to android-sdk/platform-tools/
    4. In terminal check device is connected by using below command: $ adb devices
    5. Issue screen timeout command: $ adb shell settings put system screen_off_timeout 60000

    Note

    60000 = 1 minute

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