How to clear recent apps on screen off?

Post your questions and help other users.

Moderator: Martin

Post Reply
kosamja
Posts: 9
Joined: 30 Nov 2017 11:08

How to clear recent apps on screen off?

Post by kosamja » 06 Dec 2017 00:06

This only works while screen is turned on, how to make it work while screen is turned off?

recents();
while (NOT existsElementById("com.android.systemui:id/recents_container"))
{
sleep(10);
}
while (existsElementById("com.android.systemui:id/app_thumbnail"))
{
longclickById("com.android.systemui:id/app_thumbnail");
while (NOT existsElementById("android:id/title"))
{
sleep(10);
}
click("Remove from list");
}
home();

User avatar
Desmanto
Posts: 2709
Joined: 21 Jul 2017 17:50

Re: How to clear recent apps on screen off?

Post by Desmanto » 06 Dec 2017 16:48

Control UI only works when screen is on. If you need it during off, you should turn on the screen (unlock/disable the keyguard as needed). Do the Control UI script and lock the phone back after finish.
Index of Automagic useful thread List of my other useful posts (and others')
Xiaomi Redmi Note 5 (whyred), AOSP Extended v6.7 build 20200310 Official, Android Pie 9.0, Rooted.

Post Reply