Hi,
I would like to know, how do we get the access point name from an Android Phone.
Thanks, Sana.
EDIT:
WifiManager mWiFiManager = (WifiManager) getSystemService(Context.WIFI_SERVICE);
WifiInfo w = mWiFiManager.getConnectionInfo();
Toast.makeText(this, "APN Name = "+w.getSSID(), Toast.LENGTH_SHORT).show();
The above code snippet is for current active APN name.
Thanks tdelev