Submitting my iOS build for review, I get the familiar error:
Your app is using the Advertising Identifier (IDFA). You must either provide details about the IDFA usage or remove it from the app and submit your binary again.
I know this is from using cordova-plugin-google-analytics
. When my app actually used Cordova, I would just remove libAdIdAccess.a
and AdSupport.framework
from the Linked Libraries section in Xcode. But now I am using Capacitor, so it’s added using CocoaPods.
What is the best way to ensure that the offending libraries are always removed?
Below are some areas in Xcode where I see the issue but am uncertain how best to proceed.