I am trying to get the device serial number programmatically. I have used the following line:
Build.SERIAL
Which returns something like :>
this is not your answer?:
TelephonyManager tManager = (TelephonyManager)myActivity.getSystemService(Context.TELEPHONY_SERVICE); String uid = tManager.getDeviceId();
I found it in here