Karioki
Karioki

Reputation: 664

How to take wakelock from shell command on android

Trying to improve my terminal application on Android.

And need to take Wakelock there.

So, how to take Wakelock from shell command on Android.

Upvotes: 3

Views: 4879

Answers (1)

Tarun Gupta
Tarun Gupta

Reputation: 132

shell command to acquire a wake lock

  echo lock_me > /sys/power/wake_lock

shell command to release the same wake_lock

  echo lock_me > /sys/power/wake_unlock

Upvotes: 7

Related Questions