Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

I am using google analytics in my project does that requires AdSupport Framework

I am using google analytics in my project and that requires Adsupport framework. When i am using AdSupport framework my app gets rejected showing the message:

Dear developer,

We have discovered one or more issues with your recent delivery for "Zee News English". To process your delivery, the following issues must be corrected:

Improper Advertising Identifier [IDFA] Usage. Your app contains the Advertising Identifier [IDFA] API but you have not indicated its usage on the Prepare for Upload page in iTunes Connect.

Once these issues have been corrected, go to the Version Details page and click "Ready to Upload Binary." Continue through the submission process until the app status is "Waiting for Upload." You can then deliver the corrected binary.

Regards,

Should I Select the option of IDFA when publishing the app on iTunes.Besides google analytics i am not using any advertising thing.

like image 985
pooja_1205 Avatar asked May 05 '14 06:05

pooja_1205


1 Answers

If you have an up to date Google Analytics SDK (you can check here), make sure that :

  • You don't have a reference to AdSupport framework anymore (not needed since 3.0.3c GA SDK version, for GA basic uses) ;
  • You don't have a reference to libAdIdAccess.a, because it requires the AdSupport framework ;
  • You have a reference to libGoogleAnalyticsServices.a.

Possible useful link : https://code.google.com/p/analytics-issues/issues/detail?id=387

like image 150
Jonathan F. Avatar answered Oct 21 '22 03:10

Jonathan F.