Last active
March 28, 2017 19:46
-
-
Save ydn/6f6b7e8ecde6c2c36a0b to your computer and use it in GitHub Desktop.
Integrate Flurry Analytics
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
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; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Missed the import statement and there are unnecessary semi-colons - https://gist.github.com/mrdavey/d564316006a9afcd0d84/revisions