Search found 2709 matches

by Desmanto
17 Aug 2020 07:19
Forum: User Help / Bug Reports
Topic: UI Event Trigger: Source_Class_Name
Replies: 6
Views: 32249

Re: UI Event Trigger: Source_Class_Name

UI Event is the trigger. After trigger add condition as your second example source_class_name == "android_widget_Button" True continue to your main branch of the flow. False do nothing (or something else if you need to). If that still doesn't work, you need to explain first what you need achieve. Ma...
by Desmanto
15 Aug 2020 04:16
Forum: General
Topic: Batch script for granting adb permissions
Replies: 5
Views: 32381

Re: Batch script for granting adb permissions

@richaardvark : If editing the database directly work, maybe you can try action set system setting, at the same Name - Value. Notification listener [secure] enabled_notification_listeners : ch.gridvision.ppam.androidautomagic/ch.gridvision.ppam.androidautomagic.NotificationDetectorService Enable acc...
by Desmanto
14 Aug 2020 11:14
Forum: General
Topic: Batch script for granting adb permissions
Replies: 5
Views: 32381

Re: Batch script for granting adb permissions

@richaardvark : Those permission/features require manual toggling. Usually the features are moved to other location, you can find it using action Launch App, choose the default setting app, then try to to find accessibility/notification access in the class name. Automagic can't recognize it from the...
by Desmanto
13 Aug 2020 12:11
Forum: General
Topic: ADB GUI
Replies: 3
Views: 19144

Re: ADB GUI

@BoBo: Hi, you disabled PM receipt, so I can't reply you via PM. I don't use AHK with AM, since AHK doesn't have built-in webserver. I use Eventghost instead, and pair very nice with AM. I have several flows to sync clipboard, invoke scrcpy and many others never finished (always forget/not in mood t...
by Desmanto
12 Aug 2020 01:42
Forum: User Help / Bug Reports
Topic: HTTP Post translation to Automagic
Replies: 5
Views: 21365

Re: HTTP Post translation to Automagic

@kenvega : Almost similar as above, except replace the data to be data = newMapFromValues( "method", "passthrough", "params", newList(newMapFromValues( "deviceId", "YOUR_DEVICEID_HERE", "otherKey", "otherValue" )) ); As you can see the pattern, curly braces in json is replaced to newMapFromValues() ...
by Desmanto
11 Aug 2020 11:18
Forum: User Help / Bug Reports
Topic: Known Issues on Android 9
Replies: 44
Views: 229847

Re: Known Issues on Android 9

Same here. I just realized the problem is not with reboot, it is with the flow re-initialization part. Even if you export properly with security set to none (null), after import, it will be imported as WEP. When reboot, Automagic reinit from flows.xml, hence the same "none" will be init as WEP. I ju...
by Desmanto
11 Aug 2020 05:00
Forum: User Help / Bug Reports
Topic: Is version 1.38 a fresh install?
Replies: 2
Views: 9499

Re: Is version 1.38 a fresh install?

No, it will install over the AM 1.37.0 from playstore, as if it is the update from playstore. I have installed AM 1.38.0 since sunday, after my weekly data backup. I backup all flow and glovar additionally via my own Automagic backup flow. So far, I have checked all widgets, glovar, start activity, ...
by Desmanto
10 Aug 2020 10:41
Forum: User Help / Bug Reports
Topic: Known Issues on Android 9
Replies: 44
Views: 229847

Re: Known Issues on Android 9

I test this out, set to no security, no password. Then reboot the phone, open the flow that contains that action, and it is set to WEP, just like yours. I am using AM 1.38.0 already. And since no more updates, this is the bug you have to live with from now on. There is workaround, by reimporting the...
by Desmanto
10 Aug 2020 10:28
Forum: User Help / Bug Reports
Topic: "Set Speakerphone State: On" makes flow fail
Replies: 19
Views: 60539

Re: "Set Speakerphone State: On" makes flow fail

Try to change the accessibiity feedback type to other, as I mentioned before. Some huawei phone required to change it first. I don't have any friend using huawei here, can't test it. In most cases, accessibility frequently got killed by the system power saver. You have to toggle it again (disable an...
by Desmanto
10 Aug 2020 01:06
Forum: User Help / Bug Reports
Topic: "Set Speakerphone State: On" makes flow fail
Replies: 19
Views: 60539

Re: "Set Speakerphone State: On" makes flow fail

If you check the log, do you see the flow get executed? It is possible that your call trigger doesn't triggered at all, or maybe executed too early than your 5s delay. Try clickById("com.android.incallui:id/showAudioButton") and click(576, 1244) too to see if it works. You might want to try other si...