I want to get IMEI no. for Android mobiles using browser or browser app. Can anyone suggest me for this ... plz.. Thanks in advance.
Asked
Active
Viewed 4,205 times
2 Answers
2
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();

akjoshi
- 15,374
- 13
- 103
- 121

user1645207
- 42
- 1
1
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?

Community
- 1
- 1