Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #found in comments at https://billauer.co.il/blog/2022/09/android-12-opt-out-hibernation/
- # use ADB SHELL
- # Disable pause App Activity if unused
- for uid in `pm list packages -U -3 | awk '{ print $3}' FS=:`
- do
- appops set $uid AUTO_REVOKE_PERMISSIONS_IF_UNUSED ignore
- done
- # enable pause App Activity if unused
- for uid in `pm list packages -U -3 | awk '{ print $3}' FS=:`
- do
- appops set $uid AUTO_REVOKE_PERMISSIONS_IF_UNUSED allow
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement