I already have analytics enabled and working.
I have added:
#import "FlurryAdDelegate.h"
#import "FlurryAppCircle.h"
#import "FlurryOffer.h"
#import "FlurryAnalytics.h"
this line throws this error:
Use of undeclared identifier "FlurryAPI":
[FlurryAPI setAppCircleEnabled:YES];
The right call for that is
[FlurryAppCircle setAppCircleEnabled:YES];I don’t think there’s a
FlurryAPIclass at all.See sample code at the Flurry documentation site.