Anjesh
Anjesh

Reputation: 11

Retrieve GSM network information Android?

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

Answers (1)

Thkru
Thkru

Reputation: 4199

    TelephonyManager telMgr = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);

The telephonyManager is your friend. ;)

Upvotes: 1

Related Questions