We can fetch IMEI No of our phone using TelephonyManager in android.
Use below code snippet for fetch IMEI No of android phone.
TelephonyManager mTmanager = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE); String imei = mTmanager.getDeviceId();
No comments:
Post a Comment