Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting error improper advertising identifier [IDFA] usage,when i am validating my app in xCode 5

when validating my app, I get an error saying

"Improper Advertising Identifier Usage. Your app contains the Advertising Identifier [IDFA] API but you have not respecting the Limit Ad Tracking setting in iOS."

I have check "Yes" on the Prepare for Upload page for Advertising Identifier.I am using revmob ads and flurry analytics in my app(COCOS2D-X project).How to fix this issue, I have tried a lot but not succeed.I have use below code into appdelegate but no luck.

- (NSString *)identifierForAdvertising
{
   if([[ASIdentifierManager sharedManager] isAdvertisingTrackingEnabled])
   {
       NSUUID *IDFA = [[ASIdentifierManager sharedManager] advertisingIdentifier];

       return [IDFA UUIDString];
   }

    return nil;
}  

Screen Shot

like image 818
Ashok Avatar asked Apr 28 '14 07:04

Ashok


People also ask

How do I find my IDFA Ad ID?

Open up the Google Settings app and navigate to Ads. On the Ads page, your ID should be visible at the bottom of the screen. You can also reset your Android Advertising Identifier from the Ads page by tapping the “Reset advertising ID” button.

What is IDFA Apple Developer?

The Advertising Identifier (IDFA) is a unique ID for each iOS device and is the only way to offer targeted ads. Users can choose to limit ad targeting on their iOS device.

What is IDFA in iOS?

The Identifier for Advertisers (IDFA) is an anonymized unique identifier—a mobile ad ID (MAID)—assigned by Apple to a user's device that allows an installed mobile application to track user behavior across other companies' apps, websites or offline properties for the purposes of ad targeting, personalization and ...


1 Answers

this IDFA issue was still happening for me today. I tracked it down to the GoogleAnalytics pod, so I just updated the pod to the latist version by specifying pod 'GoogleAnalytics-iOS-SDK', '~> 3.0.7' in the podfile which fixed the issue for me. the version was previously unspecified but was using 3.0.3.

like image 147
Liam Avatar answered Sep 26 '22 02:09

Liam