Reputation: 11
I want gsm network information like BCCH, BSIC etc in my android application. How can i retrieve this using android SDK?
Upvotes: 1
Views: 963
Reputation: 4199
TelephonyManager telMgr = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
The telephonyManager is your friend. ;)
Upvotes: 1