UDID DeviceID
From wiki.taptica.com
How To Retrieve UDID/Device Id
iOS:
NSString *deviceId = [[UIDevice currentDevice] uniqueIdentifier];
Android:
final TelephonyManager tm = (TelephonyManager)getBaseContext().getSystemService(Context.TELEPHONY_SERVICE); String deviceId = tm.getDeviceId();