I am looking for the easiest way to get a unique android device identifier from both the Android adb and the Android ADK itself.
For example, when i use the adb \'devi
you should probably use IMEI:
TelephonyManager m = (TelephonyManager) context .getSystemService(Context.TELEPHONY_SERVICE); String imei = m != null ? m.getDeviceId() : null;