Search found 37 matches

by mcyber
17 Sep 2014 13:04
Forum: User Help / Bug Reports
Topic: wifi scan results available how to
Replies: 12
Views: 32742

Re: wifi scan results available how to

As per Martin example, you can use condition WIFI Available , and compare the result against a local or a global variable. If you have Android 4.3.x or above, you can also check for available APS without firing up WiFi (this requires to flag an appropriate option in WiFi advanced configuration panel...
by mcyber
16 Sep 2014 16:17
Forum: User Help / Bug Reports
Topic: Can't stop Automagic service
Replies: 11
Views: 27569

Re: Can't stop Automagic service

I have set Automagic to be resident too in Xposed App Settings. It seems to affect android's capability to kill Automagic but if I do that manually, the service won't restart. I use unofficial GB port of Xposed framework. Maybe that behaves somewhat differently from official JB/KK version. Hi MURTU...
by mcyber
15 Sep 2014 18:47
Forum: User Help / Bug Reports
Topic: Can't stop Automagic service
Replies: 11
Views: 27569

Re: Can't stop Automagic service

Hi. I found the reason why Automagic won't stop. I have configured it as "resident" in an app named App Settings, a plugin of Xposed Framework. Basically this prevents an app to be killed (either by Android and/or user). Disabling it let Automagic be normally started/stopped. I did it ages ago so I ...
by mcyber
14 Sep 2014 18:40
Forum: User Help / Bug Reports
Topic: Can't stop Automagic service
Replies: 11
Views: 27569

Re: Can't stop Automagic service

@mcyber: I did as you requested. I tested killing Automagic with and without ongoing/persistent notifications present. It doesn't restart until I reboot my phone(as I have set in settings). (I haven't carefully read your post, sorry.) In your case e everything looks fine. In my case if there are so...
by mcyber
14 Sep 2014 11:16
Forum: User Help / Bug Reports
Topic: Can't stop Automagic service
Replies: 11
Views: 27569

Re: Can't stop Automagic service

Out of curiosity, why would you want to stop it? That basically fights against everything Automagic is built for. Oh, it happened by mistake: doing something else and inadvertently shut down service. Nonetheless, for whatever reason you should be able to start and stop AM service at will (the reaso...
by mcyber
13 Sep 2014 19:34
Forum: User Help / Bug Reports
Topic: Can't stop Automagic service
Replies: 11
Views: 27569

Can't stop Automagic service

Hello.
I'm running the last Automagic version. When I stop service Automagic restarts automatically.
I'm running AM on a tablet and a phone (Android 4.4.4 and 4.4.2)
Does anyone have the same issue?
by mcyber
16 Jan 2014 17:59
Forum: User Help / Bug Reports
Topic: Multiple/Embedded If's ... should that work?
Replies: 6
Views: 15730

Re: Multiple/Embedded If's ... should that work?

Try initializing variable before anything else:

Variable = "some value";
If (condition)
.......;
Else
......;
If (.....)
.....;


And so on