Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Different results for my low cost chinese tablet. It's not a phone so why getDeviceId() returns a number that seems to be a valid IMEI?

C:\>adb shell dumpsys iphonesubinfo
Phone Subscriber Info:
  Phone Type = GSM
  Device ID = null

but using

TelephonyManager tManager = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
String uid = tManager.getDeviceId();

uid = 35881700... (I'm not showing the whole IMEI number for privacy)

share|improve this question
1  
It looks like those China guys just return random IMEI in their firmware. Not in the first time, I saw also such IMEIs as "004999010640000000", "rkdroid_device0000", "FFFFFFFFFFFFFF0000". The only way is to check if device has cellular radio. – Tertium Mar 22 at 21:59

1 Answer

Is there any kind of GSM radio in your tablet? (Sorry for posting an answer, but I am not allowed to post comments ..)

According GSMPhone.java in the android version that I am looking at, the IMEI is set when the radio used by the device becomes initialized.

share|improve this answer
Hi, really I don't know if there's radio module inside the tablet hw. There's no phone keyboard app... – Seraphim Jul 17 '12 at 8:31
1  
What does the log say about which hardware gets initialized when you start your tablet? – wojci Jul 17 '12 at 8:33
Hi, how can I do to get log? – Seraphim Feb 11 at 21:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.