hi Martin
i want to set reminders in Google using automagic. I think start activity action can do this. how can I set reminders in Google? I want to know the information in start activity "data uri,extras" to set reminders
from record4
reminders in Google
Moderator: Martin
reminders in Google
No.1 Automation app in play store Automagic Premium
Samsung Galaxy j2 non rooted.
Android 5.1.1
Samsung Galaxy j2 non rooted.
Android 5.1.1
Re: reminders in Google
I don't think there is direct method to add reminder without opening google assistant. But you can still launch it and then feed information to is using text method (instead of voice), to add the reminder.
It is the same concept as in other thread : viewtopic.php?f=5&t=8001
Add action : Launch App, to launch google assistant
Package name : com.google.android.googlequicksearchbox
Class Name : com.google.android.apps.gsa.staticplugins.opa.hq.OpaHqActivity
Then add Control UI, with the script as in that thread. I have modified it a bit to suit your need here.
Change the input_text part to add reminder for other subject or other time. You must specify at least a subject and a time or place. If omitted, Gass will ask you again for it, so it won't create the reminder directly.
But since you are using Automagic, I think it is better to create the reminder in Automagic. You already have access to glovardt and the method to use glovar map to save multiple glovardt. Of course there is exception if you want the reminder to be synced across multiple devices, then Google Assistant seems to be easier.
It is the same concept as in other thread : viewtopic.php?f=5&t=8001
Add action : Launch App, to launch google assistant
Package name : com.google.android.googlequicksearchbox
Class Name : com.google.android.apps.gsa.staticplugins.opa.hq.OpaHqActivity
Then add Control UI, with the script as in that thread. I have modified it a bit to suit your need here.
Code: Select all
sleep(1000);
clickById("com.google.android.googlequicksearchbox:id/opa_hq_content_footer_icon_keyboard");
sleep(500);
setText2ById("com.google.android.googlequicksearchbox:id/input_text", "Add reminder to submit report on friday 08:00");
sleep(100);
clickById("com.google.android.googlequicksearchbox:id/send_button");
sleep(5000);
back();
sleep(200);
back();
But since you are using Automagic, I think it is better to create the reminder in Automagic. You already have access to glovardt and the method to use glovar map to save multiple glovardt. Of course there is exception if you want the reminder to be synced across multiple devices, then Google Assistant seems to be easier.
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.
Xiaomi Redmi Note 5 (whyred), AOSP Extended v6.7 build 20200310 Official, Android Pie 9.0, Rooted.
Re: reminders in Google
ho desmanto
I agree with you. glovardt is best of the best choice for me.
thanks
I agree with you. glovardt is best of the best choice for me.
thanks
No.1 Automation app in play store Automagic Premium
Samsung Galaxy j2 non rooted.
Android 5.1.1
Samsung Galaxy j2 non rooted.
Android 5.1.1