Skip to content

Instantly share code, notes, and snippets.

@ydn
Last active March 28, 2017 19:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save ydn/6f6b7e8ecde6c2c36a0b to your computer and use it in GitHub Desktop.
Save ydn/6f6b7e8ecde6c2c36a0b to your computer and use it in GitHub Desktop.
Integrate Flurry Analytics
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
// Override point for customization after application launch.
Flurry.startSession("YOUR_FLURRY_API_KEY");
// Your code...
return true;
}
@mrdavey
Copy link

mrdavey commented Dec 20, 2015

Missed the import statement and there are unnecessary semi-colons - https://gist.github.com/mrdavey/d564316006a9afcd0d84/revisions

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