-1

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

Arina
  • 11
  • 2
  • 5

2 Answers2

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
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