Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

While fetching device id in Samsung Galaxy Player 3.6 running Android GingerBread 2.3.6 app crashes. Line of code used:

((TelephonyManager) activity.getSystemService( Context.TELEPHONY_SERVICE )).getDeviceId();

This line of code returns a null value. It doesn't work specifically with device mentioned above. We have tested on HTC One X, LG devices and Morola Droid as well as on Samsung Ace and Samsung S.

share|improve this question
Upload your code as well. – Lucifer Aug 29 '12 at 5:12
What activity contains? – Praveen Aug 29 '12 at 5:13
This code works fine with most of the devices which we have except for the one mentioned above. – fahms Aug 29 '12 at 5:53

2 Answers

up vote 0 down vote accepted

This is, because the Galaxy Player is no phone. Therefore it has no TELEPHONY_SERVICE.

To get a unique identifier for each Android device, see this official blog post:

http://android-developers.blogspot.com/2011/03/identifying-app-installations.html

share|improve this answer

Please check if you have provided permission READ_PHONE_STATE to the application in manifest file.

share|improve this answer
Yes i do have permission set in Manifest. This is happening specific for the device mentioned - Samsung Galaxy Player 3.6 running Android GingerBread 2.3.6 – fahms Aug 29 '12 at 5:50

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.