Twice now I’ve had my binary rejected because of the title reason. From Apple:
**We found that your app uses the iOS Advertising Identifier but does not include ad functionality. This does not comply with the terms of the iOS Developer Program License Agreement, as required by the App Store Review Guidelines.
Specifically, section 3.3.12 of the iOS Developer Program License Agreement states:
“You and Your Applications (and any third party with whom you have contracted to serve advertising) may use the Advertising Identifier, and any information obtained through the use of the Advertising Identifier, only for the purpose of serving advertising. If a user resets the Advertising Identifier, then You agree not to combine, correlate, link or otherwise associate, either directly or indirectly, the prior Advertising Identifier and any derived information with the reset Advertising Identifier.”
Note: iAd does not use the AdSupport framework, ASIdentifierManager, or the Advertising Identifier. Therefore they are not required for iAd implementations and should not be included in your app for iAd support.
If your app is serving ads, please:
-
Ensure that you have tested your app on a device, not just the simulator, and that you have removed all previous versions of your app prior to testing
-
Provide us the steps to locate ads in your app
If your app does not serve ads, please check your code - including any third-party libraries - to remove any instances of:
class: ASIdentifierManager
selector: advertisingIdentifier
framework: AdSupport.framework**
This app does not use ads.
This app does not have any plug-ins.
When I searched in files it came up with “advertisingIdentifier”, although a hex dump didn’t find this string. When I used the Xcode nm utility to dump globals it appears maybe some ad-related stuff is being included ??:
000d0b40 T _CoronaEventAdsRequestName
000f5bcc T _CoronaPluginLuaLoad_CoronaProvider_ads
000f5c64 T _CoronaPluginLuaLoad_CoronaProvider_analytics
000f5ce0 T _CoronaPluginLuaLoad_CoronaProvider_gameNetwork
000f5d78 T _CoronaPluginLuaLoad_CoronaProvider_licensing
000f5bb0 T _CoronaPluginLuaLoad_ads
000f5c38 T __ZN6Corona3Lua4OpenIXadL_Z23CoronaPluginLuaLoad_adsEEEEiP9lua_State
000f5c28 T __ZN6Corona3Lua4OpenIXadL_Z38CoronaPluginLuaLoad_CoronaProvider_adsEEEEiP9lua_State
000f5be8 T _luaopen_ads
I don’t know what else I can do to resolve this. I’ve tried build 2015.2571 and same binary rejection.
PLEASE HELP!