I'm trying to set my Android device to be an Access-Point using the code I've seen here before:

WifiManager wifi = (WifiManager) getSystemService(Context.WIFI_SERVICE);

WifiConfiguration netConfig = new WifiConfiguration();
netConfig.SSID = "MyAccessPoint";

Method method = wifi.getClass().getMethod("setWifiApEnabled", WifiConfiguration.class, boolean.class);
method.invoke(wifi, netConfig, true);

now, I managed to turning it on but without the SSID which I set in WifiConfiguration.

This is driving me crazy.

Anyone?

Thanks....

link|improve this question

25% accept rate
I'm no expert on this but have you checked your manifest for the correct permissions ? – Kerry Aug 28 '11 at 15:10
@Kerubu Yes, you are right, this might be the issue. @FLEXpert Try adding CHANGE_WIFI_STATE CHANGE_WIFI_MULTICAST_STATE and ACCESS_WIFI_STATE permissions in your manifest. developer.android.com/reference/android/… – Nikola Despotoski Aug 28 '11 at 17:27
I seem to remember having a few issues of this myself and vaguely remember reading that android fails silently if an app does not have the correct permissions hence programmers are left in the dark a bit! – Kerry Aug 28 '11 at 18:33
ok, I finally managed to change the SSID but not on HTC phones – FLEXpert Aug 29 '11 at 8:17
1  
so how did you finally manage to change the SSID?? – arnodenhond Mar 1 at 13:17
feedback

1 Answer

See how I got this working at Android 2.3 wifi hotspot API.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.