Page 1 of 1
Updates
Posted: 11 Oct 2018 03:37
by Rafi4
Hi
Is there any way to update apps with automagic those I used and like mostly ? If yes give me one example.
Re: Updates
Posted: 11 Oct 2018 04:56
by digitalstone
I'm not an CUI expert, but i know i have used this somewhere... ah got it.
Place action "launch app":
Connect to action "Control UI":
Code: Select all
sleep(5000);
clickById("com.android.vending:id/navigation_button");
sleep(2000);
click("My apps & games");
sleep(2000);
clickById("com.android.vending:id/header_action_button");
Re: Updates
Posted: 11 Oct 2018 06:30
by anuraag
Re: Updates
Posted: 11 Oct 2018 15:12
by Desmanto
You don't need to trigger the update or using automagic. Just go to playstore > My apps & games > find you app and tap 3 dot menu, check the auto update.
If you want to update only at certain wifi, set the wifi you don't want to be auto update to metered network.
But if you need to update manually on schedule, the start activity from anuraag link will be the best solution.
Re: Updates
Posted: 11 Oct 2018 19:59
by digitalstone
I could've told him that as well
But i think Rafi4 knows that already, so i assumed he wanted to figure out if he could do it through the means of experimentation.