[iOS] disable third party tracking sdk when "Limit ad tracking" option checked

This commit is contained in:
Aleksey Belouosv 2018-09-28 17:40:47 +03:00 committed by Vlad Mihaylenko
parent ef8b343235
commit a36d03d9db
2 changed files with 17 additions and 10 deletions

View file

@ -1011,6 +1011,9 @@ didReceiveNotificationResponse:(UNNotificationResponse *)response
- (MWMMyTarget *)myTarget
{
if (![ASIdentifierManager sharedManager].advertisingTrackingEnabled)
return nil;
if (!_myTarget)
_myTarget = [[MWMMyTarget alloc] init];
return _myTarget;

View file

@ -8,6 +8,7 @@
#import <MyTrackerSDK/MRMyTracker.h>
#import <MyTrackerSDK/MRMyTrackerParams.h>
#import <FBSDKCoreKit/FBSDKCoreKit.h>
#import <AdSupport/ASIdentifierManager.h>
#include "platform/platform.hpp"
#include "platform/settings.hpp"
@ -39,17 +40,20 @@ void checkFlurryLogStatus(FlurryEventRecordStatus status)
// _enabled should be already correctly set up in init method.
if ([MWMSettings statisticsEnabled])
{
auto sessionBuilder = [[[FlurrySessionBuilder alloc] init]
withAppVersion:[AppInfo sharedInfo].bundleVersion];
[Flurry startSession:@(FLURRY_KEY) withSessionBuilder:sessionBuilder];
[Flurry logAllPageViewsForTarget:application.windows.firstObject.rootViewController];
if ([ASIdentifierManager sharedManager].advertisingTrackingEnabled)
{
auto sessionBuilder = [[[FlurrySessionBuilder alloc] init]
withAppVersion:[AppInfo sharedInfo].bundleVersion];
[Flurry startSession:@(FLURRY_KEY) withSessionBuilder:sessionBuilder];
[Flurry logAllPageViewsForTarget:application.windows.firstObject.rootViewController];
[MRMyTracker createTracker:@(MY_TRACKER_KEY)];
#ifdef DEBUG
[MRMyTracker setDebugMode:YES];
#endif
[MRMyTracker trackerParams].trackLaunch = YES;
[MRMyTracker setupTracker];
[MRMyTracker createTracker:@(MY_TRACKER_KEY)];
#ifdef DEBUG
[MRMyTracker setDebugMode:YES];
#endif
[MRMyTracker trackerParams].trackLaunch = YES;
[MRMyTracker setupTracker];
}
[Alohalytics setup:@(ALOHALYTICS_URL) withLaunchOptions:launchOptions];
}