Open b099l3 opened 2 years ago
Hi @b099l3
Thanks for opening the issue, If that feature is already working and you found a way to do it feel free to add docs for it :) sure!
Hello,
Are there any updates abot setting up Ad Tracking and IDFA on iOS?
I see this package is using analytics-ios 4.1.6
When trying to set up Ad Tracking and IDFA I noticed the official docs has some setup steps with analytics-ios 4.1 or greater:
...
SEGAnalyticsConfiguration* configuration = [SEGAnalyticsConfiguration configurationWithWriteKey:@"YOUR_WRITE_KEY"]; // Enable advertising collection configuration.enableAdvertisingTracking = YES; // Set the block to be called when the advertisingID is needed // NOTE: In iOS 14, you'll need to manually do authorization elsewhere and only when it has been authorized, return the advertisingIdentifier to segment via the block below configuration.adSupportBlock = ^{ return [[[ASIdentifierManager sharedManager] advertisingIdentifier] UUIDString]; }; [SEGAnalytics setupWithConfiguration:configuration];
I wonder if we should add some docs for setting up Ad Tracking and IDFA on iOS? I can do it just want to make sure this is something we want on this repo?