I was looking at teh yozio code and they seem to track with a device name and ip address as the fingerprint. Is that reliable since ip addresses can change and the device name could be the same across multiple devices, e.g. "Bob's iPhone". Am I wrong in the assumption?
Here's Yozio's implementation
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
NSString *appKey = @"e78ffa70-0975-0130-2e03-12314000ac7c";
NSString *deviceName = [[[UIDevice currentDevice] name] stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSString *url = [NSString stringWithFormat:@"http://yoz.io/e?app_key=%@&device_name=%@", appKey, deviceName];
[NSURLConnection connectionWithRequest:[NSMutableURLRequest requestWithURL:[NSURL URLWithString:url]] delegate:nil];
// Your app code here...
}