Hi all,
I think my ROM has some bug that breaks 3rd party apps like Tasker when shutting down wifi (wifi status says "shutting down" forever, until phone hangs or restart by itself)
I was wondering if I can shut the wifi by sending an intent from takser to the android WifiManager instead of using its WiFi OFF action.
I found something like this
Intent configIntent = new Intent(android.provider.Settings.ACTION_WIRELESS_SETTINGS);
configIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
this.startActivity(configIntent);
but I don't know how to use this informartion to configure the send intent action of tasker.
Could someone help me in doing this?
Thanks in advance
Gian