Skip to content

Instantly share code, notes, and snippets.

@flurrydev
Last active December 3, 2019 21:18
Show Gist options
  • Save flurrydev/d3c09bd94a094c78a8b9dad149240b71 to your computer and use it in GitHub Desktop.
Save flurrydev/d3c09bd94a094c78a8b9dad149240b71 to your computer and use it in GitHub Desktop.
CCPA optOut iOS
- (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