My app has been rejected due to following reason:
We found 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[..]
It looks like there's a issue with some library I included and to spot the offending library I followed the suggestion from this stack-over-flow
In terminal
grep -r advertisingIdentifier .
And this is what I get back:
./Pods/Facebook-iOS-SDK/src/Core/FBUtility.m: advertiserID = [[manager advertisingIdentifier] UUIDString];
./Pods/Quantcast-Measure/Quantcast-iOS-Measurement/QuantcastMeasurement.m: NSUUID* uuid = [manager advertisingIdentifier];
So it looks like there's a issue in the pods i have included. I also check and I DO NOT include the AdSupport Framework, so how do I fix the issue? Should I go and change manually the offending methods as suggested here?
But what happen if I'm gonna update the pods later on? thanks