Access the SIM Card with an Android Application?
问题 I wonder if it's possible to access to the SIM card with an Android Application 回答1: You can get the IMEI like this (but is it what you want ?), just an exemple : mTelephonyMgr = (TelephonyManager)getSystemService(Context.TELEPHONY_SERVICE); String imei = mTelephonyMgr.getDeviceId(); Likewise, you have String getSimCountryIso(): Returns the ISO country code equivalent for the SIM provider's country code. String getSimOperator(): Returns the MCC+MNC (mobile country code + mobile network code)