Last active
December 3, 2019 21:18
-
-
Save flurrydev/d3c09bd94a094c78a8b9dad149240b71 to your computer and use it in GitHub Desktop.
CCPA optOut iOS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { | |
FlurrySessionBuilder* builder = [[[[FlurrySessionBuilder new] | |
withCrashReporting:YES] | |
withAppVersion:@"123"] | |
withDataSaleOptOut:YES]; // the default is NO | |
[Flurry startSession:@"apiKey" withSessionBuilder:builder]; | |
//Your code | |
... | |
return YES; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment