Search found 2709 matches

by Desmanto
28 Jul 2020 17:25
Forum: User Help / Bug Reports
Topic: Mobile network state toggle- ADB hack
Replies: 5
Views: 19133

Re: Mobile network state toggle- ADB hack

Hmmm, zenfone pro M1 should be very close to stock. The method above works for my RN5 whyred with AEX Pie 9.0 ROM. I have root though, maybe the setting the global category is invoked using root rights. Tasker method probably using adb shell svc data enable Without adb or dump permission, only execu...
by Desmanto
28 Jul 2020 10:26
Forum: User Help / Bug Reports
Topic: Mobile network state toggle- ADB hack
Replies: 5
Views: 19133

Re: Mobile network state toggle- ADB hack

We can do this already using Set System Setting. [global] mobile_data1 : 0 >>> 1 The key can be different in yours, you can find it using my secure logger. https://automagic4android.com/forum/viewtopic.php?f=3&t=7931 This reminds me that I haven't share my new secure setting logger flow. I almost fo...
by Desmanto
28 Jul 2020 10:24
Forum: User Help / Bug Reports
Topic: Multi-SIM target number identification
Replies: 18
Views: 41580

Re: Multi-SIM target number identification

I have colleagues using Samsung S8, Note 8, S9; but none of them use dual SIM, only single SIM + single microsd. I tried to call them and no indication of SIM 1 or SIM 2 in the notification statusbar. Maybe it is because single SIM. S8 and Note 8 still Android 9. Mine is Redmi Note 5 whyred, using A...
by Desmanto
28 Jul 2020 10:19
Forum: User Help / Bug Reports
Topic: regex?
Replies: 10
Views: 23960

Re: regex?

Sorry, I somehow missed one backslash at the regex for \D, should be \\D (double escape). Hence it is not working at your part. Yours can be used too, but still have to fix the \D. Adding $ ensure it always match the last number. It should be working fine now. (I have corrected my previous post too)...
by Desmanto
27 Jul 2020 13:37
Forum: User Help / Bug Reports
Topic: Multi-SIM target number identification
Replies: 18
Views: 41580

Re: Multi-SIM target number identification

Not Trigger Incoming Phone Call, as that intent doesn't provide the indication of the SIM card being called (at least, not at my phone). Use Trigger Notification on Statusbar Displayed, you can filter it on com.android.dialer (in most phone), or just leave it * (to select all app). Add a condition d...
by Desmanto
27 Jul 2020 13:32
Forum: User Help / Bug Reports
Topic: Speech Output stucks
Replies: 5
Views: 26368

Re: Speech Output stucks

Hmm, my previous test (long time ago), will get random result if both unchecked. Embedded checked, will result always offline. I use Vocazilzer2Ex TTS engine, not Google TTS. If the problem occur again, try to spot the pattern at that time. Maybe it is the internet, some random memory leak (which ca...
by Desmanto
27 Jul 2020 10:06
Forum: User Help / Bug Reports
Topic: Multi-SIM target number identification
Replies: 18
Views: 41580

Re: Multi-SIM target number identification

At mine, when there is incoming call, {notification_text} will contain the caller number/name and "Incoming call via CARD 2" (CARD 2 is the SIM slot 2's name). If yours is similar, you can use trigger notification on statusbar, and check for the text containing the SIM Card name. Usually you can mod...
by Desmanto
26 Jul 2020 18:37
Forum: General
Topic: Is Martin OK?
Replies: 3
Views: 24314

Re: Is Martin OK?

Just realized that too. I sometimes also can't post in forum due to many things. I can look at the forum, but usually replying will takes time to test it first before posting appropriate reply. Hence I postpone until I have time to do so. Maybe Martin also have many things to be done first. But I st...
by Desmanto
26 Jul 2020 18:31
Forum: User Help / Bug Reports
Topic: How to open an img file?
Replies: 2
Views: 8554

Re: How to open an img file?

Where do you want to open the image? In other 3rd party viewer or built-in Automagic? For 3rd party app, in most app, you can use intent view. I use MiXplorer Silver, which already have image viewer activity than can be invoked from other app. I use Start Activity. Start Activity Action : android.in...
by Desmanto
26 Jul 2020 18:24
Forum: User Help / Bug Reports
Topic: sort(list, casesensitive, natural)
Replies: 2
Views: 10187

Re: sort(list, casesensitive, natural)

case sensitive as the name stated, differentiate between upper case and lower case. For AM, the case sensitive option is affected by the natural sort. Case sensitive + natural = lower case first Case sensitive + lexical = Upper case first While natural (natural true) means the human nature of unders...