简体   繁体   中英

Android : Is there any way to get IMEI of device using browser or browser app

I want to get IMEI no. for Android mobiles using browser or browser app. Can anyone suggest me for this ... plz.. Thanks in advance.

This will give you the IMEI Number of your Android Mobile Requires Permission: READ_PHONE_STATE

TelephonyManager teleManager = 
    (TelephonyManager)context.getSystemService(Context.TELEPHONY_SERVICE);  
String IMEI = teleManager.getDeviceId();

You can't get this kind of sensitive information through the browser, but please look at this question about an application. How to get the device's IMEI/ESN programmatically in android?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM