Hi, Is there any unique id on Android Mobile?? If it is then how many digit it has? How can I access that through my program??
Thanks Deepak
Hi, Is there any unique id on Android Mobile?? If it is then how many digit it has? How can I access that through my program??
Thanks Deepak
IMEI is dependent on the SIM card, which might be removed or transferred between phones. The ANDROID_ID is another unique string that is set when the device is first turned on. It might change after a factory reset, however. It is 64 bits and is represented as a hex string.
http://developer.android.com/reference/android/provider/Settings.Secure.html#ANDROID_ID
String unique_id = android.provider.Settings.Secure.getString(getContentResolver(), android.provider.Settings.Secure.ANDROID_ID);