Question

I need to get the unique device id to populate unique user id in the database. I have used the following code to get that.

NSString *strApplicationUUID= [[[UIDevice currentDevice] identifierForVendor] UUIDString];

But when I am reinstalling the app, the UUID is changing all the time. But as far as I know the device id never changes. For that I used below code with the third party SSKeychain to save and retrieve the old UDID:

NSString *Appname = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleName"];
    NSString *strApplicationUUID = [SSKeychain passwordForService:Appname account:@"manab"];
    if (strApplicationUUID == nil)
    {
        strApplicationUUID  = [[[UIDevice currentDevice] identifierForVendor] UUIDString];
        [SSKeychain setPassword:strApplicationUUID forService:Appname account:@"manab"];
    }

Now the problem is when the version of that Application is changed i.e app v2.0 form app v1.0 then again the UDID changed. So the logic is clear to me that I am not getting the unique UDID all the time, I am just getting UDID as vendor or App basis.

How to get that by programatically? Is there any other way to get that, please show me the right Direction.

Was it helpful?

Solution

I have solved this by using advertisingIdentifier.

As I have seen there that advertisingIdentifier is

"An alphanumeric string unique to each device, ..."

For that I have used it as the unique identifier (though it is used for the serving advertisements).

My code is:

-(NSString*)UniqueAppId
{
    NSString *Appname = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"CFBundleName"];
    NSString *strApplicationUUID = [SSKeychain passwordForService:Appname account:@"manab"];
    if (strApplicationUUID == nil)
    {
        strApplicationUUID  = [[[ASIdentifierManager sharedManager] advertisingIdentifier] UUIDString];
        [SSKeychain setPassword:strApplicationUUID forService:Appname account:@"manab"];
    }
    return strApplicationUUID;
}

and just calling it when needed as

[self UniqueAppId];

OTHER TIPS

advertisingIdentifier is a good option as it does not changed on application update or re-install.

But it also get changed when users reset their device so you may want to reconsider it based on your requirement.

For ref.

How to get the UDID in iOS 6 and iOS 7

CFUUID Vs. advertisingIdentifier Vs. identifierForVendor

In my case I preferred to use user's email address as a unique Id. So user will not get his data or identify on system only if user himself change his unique identity. :-)

Regards

In Objective-c

if u want to get the unique id in IOS 7 and above the following is to be used:

first of all create your own unique ID and the you have to save in the keychain. Now use the vendor ID, it will be reset if all the apps by the same vendor are removed from the device.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top