Page 1 of 1

How to clear recent apps on screen off?

Posted: 06 Dec 2017 00:06
by kosamja
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();

Re: How to clear recent apps on screen off?

Posted: 06 Dec 2017 16:48
by Desmanto
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.