Comment puis-je accéder au numéro de série de la carte SIM et à l'interface IMSI sous Android?Accès aux détails de la carte SIM
0
A
Répondre
1
Cocher cette Access the SIM Card with an Android Application?
1
Vous pouvez obtenir des détails sim en utilisant le code suivant
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();