Skip to content

Instantly share code, notes, and snippets.

@ydn
Last active August 29, 2015 14:22
Show Gist options
  • Save ydn/14f73798d7553f918b55 to your computer and use it in GitHub Desktop.
Save ydn/14f73798d7553f918b55 to your computer and use it in GitHub Desktop.
Universal Integration Example
- (void)applicationDidFinishLaunching:(UIApplication *)application {
if (device is iPAD) {
[FlurryAnalytics startSession:@"API Key for iPad project"]
} else {
[FlurryAnalytics startSession:@"API Key for iPhone project"]
}
}
@dbgrandi
Copy link

  • missing - on method signature
  • missing * in method signature
  • fix indentation
  • fix if clause

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment