Sunday 20 September 2015

Get Android Device UDID


Get Your Android Device UDID:

1
2
3
public static String getDeviceUDID(Context ctx) {
return Secure.getString(ctx.getContentResolver(),Secure.ANDROID_ID);
}