I am integrating Flurry into my swift app. I have set up all the code correctly (i think) but nothing happens at runtime. I get this message in the console:
2015-08-14 23:41:14.509 Ball[734:137593] Flurry: Starting session on Agent Version [Flurry_iOS_155_6.7.0]
My AppDelegate.swift file looks like this:
class AppDelegate: UIResponder, UIApplicationDelegate {
func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
Flurry.startSession("FLURRY_ID")
Flurry.logEvent("Launched Application")
return true
}
}
I don't know if this message is good or bad.
Any ideas?