How do I access the SIM serial number and IMSI in Android?
Asked
Active
Viewed 3,170 times
2 Answers
1
You can get sim details using the following code
mTelephonyMgr = (TelephonyManager)getSystemService(Context.TELEPHONY_SERVICE);
String imei = mTelephonyMgr.getDeviceId();
String country= mTelephonyMgr.getSimCountryIso();
String SimOperator =mTelephonyMgr.getSimOperatorName();
String SimSerialNumber= mTelephonyMgr.getSimSerialNumber();
int SimState= mTelephonyMgr.getSimState();
String SubscriberId= mTelephonyMgr.getSubscriberId();
String DeviceId= mTelephonyMgr.getDeviceId();
String mob=mTelephonyMgr.getLine1Number();

Arun Chand
- 384
- 4
- 18