Search found 33 matches

by canadaDry
12 Nov 2018 00:42
Forum: General
Topic: Google removing ancillary SMS access...
Replies: 3
Views: 11186

Google removing ancillary SMS access...

Per: https://android-developers.googleblog.com/2018/10/providing-safe-and-secure-experience.html " Going forward, Google Play will limit which apps are allowed to ask for these permissions. Only an app that has been selected as a user's default app for making calls or text messages will be able to a...
by canadaDry
05 Sep 2018 21:05
Forum: User Help / Bug Reports
Topic: Anounce incoming caller by speech
Replies: 2
Views: 7513

Re: Anounce incoming caller by speech

Yup. The "incoming call" trigger will find the contact and fill the appropriate variables eg: contact_name that can be passed to the "speech output" action.
by canadaDry
05 Sep 2018 18:35
Forum: User Help / Bug Reports
Topic: Remove Old Calendars
Replies: 1
Views: 7244

Re: Remove Old Calendars

Is there a way to remove them Not sure what you mean by remove them ... but one of the ways I manipulate calendars on my devices is via the awesome SQLite Debugging Tool app. It allows you to run update queries on calendar tables on the device. So you could use it to (permanently) delete all entrie...
by canadaDry
05 Sep 2018 18:20
Forum: User Help / Bug Reports
Topic: Voice recognition/input timeout
Replies: 2
Views: 8222

Re: Voice recognition/input timeout

Perfect advice (as always) Desmanto! That works like a charm, thank you. | how many language do you have? On two different devices (running Lineage w Android 7.1.2 and CM w Android 4.4.4) there are several screens of languages to choose from... though I wonder the utility in that - I have 'prefer of...
by canadaDry
05 Sep 2018 01:21
Forum: User Help / Bug Reports
Topic: Voice recognition/input timeout
Replies: 2
Views: 8222

Voice recognition/input timeout

Wondering if there's a way to make the input speech prompt timeout (or a way to stop it after x seconds). I have a task where I currently have it speak "to continue say 'yes' otherwise say 'cancel'" and then it uses input speech to await a voice reply... but I'd like it to time out/continue if nothi...
by canadaDry
08 Apr 2018 18:26
Forum: General
Topic: Shoutout
Replies: 3
Views: 10916

Re: Shoutout

Looks like a duck, quacks like a duck....
by canadaDry
05 Apr 2018 07:36
Forum: General
Topic: Anyone like regex challenges?
Replies: 3
Views: 11444

Re: Anyone like regex challenges?

matched_list...don't need to declare it again... declare it as matched_list = newList(); Got it, thx! The (?!\\.\\.) is negative lookaround, will make sure if the last 3 character match with 3 dots (1 + 2), it will throw away the match. Thanks! I figured that lookaround was going to be the trick......
by canadaDry
04 Apr 2018 18:51
Forum: General
Topic: Anyone like regex challenges?
Replies: 3
Views: 11444

Anyone like regex challenges?

Ok, I'll admit I'm pretty lame at regex, so I'm probably missing something obvious (like look ahead/backward). Trying to detect a single period ('.') at the end of the line. The difficulty I'm having is ensuring that the end of line doesn't end with '...' I ended up resorting to this code: match_lis...
by canadaDry
04 Apr 2018 18:37
Forum: General
Topic: Automagic Flow Editor?
Replies: 21
Views: 60604

Re: Automagic Flow Editor?

Like Desmanto i've installed an Android vm (via qemu on my linux machine - but it'll work under vmware on a PC just fine too) installed Automagic (and any other apks I need). I do most of my script development and testing there. When I need some quick fixes I use a blue tooth keyboard to tweak scrip...