I think you could use IMEI value.  IMEI = International Mobile
Equipment Identity which is a unique number for every GSM, WCDMA, IDEN
phone.

The way to retrieve the value is by using something like this:

import android.telephony.TelephonyManager;

TelephonyManager telephonyManager = (TelephonyManager) getSystemService
(Context.TELEPHONY_SERVICE);

Because of the sensible nature of this value, if you want to send it
over the web I encourage you to encrypt it before. Or just apply a
hash algorithm like MD5 to it.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to