Note that the app is designed to work without user interaction and with full control of phone (webcam application).

I wrote an app that use Alarm manager to execute a service (that hold a wakelock to perform the entire execution) every minutes to upload data on net, and it works perfect....sometimes.

In fact, cause of wifi doesn't stay correctly on, i need to enable and disable airplane mode during service execution, so that each time it will be run, there will be a new connection to the acces point.

This work perfect, but sometimes wifi doesn't re-active making airplane mode off...

Is there a way to force this?

Note that this is a problem that affect the app for very long time (hours) but without doing anything the app, sometimes, return to run perfect...and so on..

That's the code that i use to enable/disable airplane mode (note that at beginning wifi is on and connected to ap).

//disable connection
android.provider.Settings.System.putInt(getContentResolver(),android.provider.Settings.System.AIRPLANE_MODE_ON,1);
// Post an intent to reload
Intent intent1 = new Intent(Intent.ACTION_AIRPLANE_MODE_CHANGED);
intent1.putExtra("state", 1);
sendBroadcast(intent1);
//connection disabled


//enable connection
android.provider.Settings.System.putInt(getContentResolver(),android.provider.Settings.System.AIRPLANE_MODE_ON,0);
// Post an intent to reload
Intent intent4 = new Intent(Intent.ACTION_AIRPLANE_MODE_CHANGED);
intent4.putExtra("state", 0);
sendBroadcast(intent4);
//Connection enabled
link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.