I have a problem. I include the flurry.h and libflurry.a files in my project written in objective c. Then i add SystemConfiguration.framework to my app. Then in Application Delegate:file I import Flurry.h and inside applicationDidFinishLaunching add: *[Flurry startSession:@"MY_KEY"]*;
In my mainViewController I write this function, when I click in my button call this function.
(IBAction)Push:(id)sender {
[Flurry setUserID:@"Flurry"];
[Flurry setAge: 22];
[Flurry setGender:@"m"];
[Flurry logEvent:@"I just clicked Push!!!"];
NSLog(@"button clicked!!!");
}
But in my flurry.com account I can not see any changes. What can I do