No, there is nothing related to the advertising identifier in info.plist.
When you submit the app to the App Store, you will need to check some things to tell Apple that you are using it with an identifier. More on this here:
https://developer.apple.com/library/ios/documentation/LanguagesUtilities/Conceptual/iTunesConnect_Guide/Chapters/SubmittingTheApp.html
Hereβs how to get the advertising ID:
Goal C -
@import AdSupport;
...
NSString * adId = [[[[ASIdentifierManager sharedManager] advertisingIdentifier] UUIDString];
Swift -
import adsupport
... let myIDFA: String? // Check if Advertising Tracking is Enabled if ASIdentifierManager.shared().isAdvertisingTrackingEnabled { // Set the IDFA myIDFA = ASIdentifierManager.shared().advertisingIdentifier.uuidString } else { myIDFA = nil }
(updated to Swift 3.0)
source share