Flurry includes the following in its basic step for iOS.
1. Download the Flurry iOS SDK
2. Add the Flurry lib to your project
3. Incorporate the following two lines of Flurry code:
#import "Flurry.h"
- (void)applicationDidFinishLaunching:(UIApplication *)application
{
[Flurry startSession:@"YOUR_API_KEY"];
//your code
}
I have completed this step in my app and run the app on the simulator. But since it takes time for updates to show on the dashboard, I'm not sure if this step is sufficient to track the simplest case of a user starting an application and then closing it. Is this basic step sufficient to monitor starting and closing of applications? Thanks.