I'm busy writing a little program to automate my wifi on my 3.1 honeycomb tab and my 2.3.5 gingerbread phone.
Everything works great on the phone, but when my app tries to disable my wifi on honeycomb it fc's.
My app basically sets and alarm to fire a custom broadcast which is then catched by my broadcast receiver. I can confirm that the broadcast is fired and is cough, but it would seem that honeycomb throws an runtime exception when it runs .setWiFiEnabled(false). I have check the permissions and they look correct. (It is working in gb).
Here is some of my code to try and explain better.
Manifest
<uses-sdk android:minSdkVersion="7" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE"/>
<uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<receiver android:name="WiFiOffDoerReceiver" android:enabled="true">
<intent-filter>
<action android:name="za.co.cjoliver.WIFIOFFDOER"/>
</intent-filter>
</receiver>
Code
import android.app.AlarmManager;
import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.net.wifi.WifiManager;
import android.util.Log;
public class WiFiOffDoerReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Log.d("WiFi Beater3", "in WiFiOffDoerReceiver.onReceive");
WifiManager myWifiManager = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);
myWifiManager.setWifiEnabled(false);
}
}
Let me say thank you already for any help.