I am trying to implement Flurry Analytics in my IOS app and have done the following:
I have downloaded the extension from here: http://extensionsforair.com/extensions/flurry-analtyics/
I am using Flash CS6 and Air 3.5 on a PC.
I have added the ane to the library path
And I have put this code on the first frame of my test movie (I have replaced my real application ID with X’s but it was 20 numbers and letters, all capitals. Hopefully this is the correct ID – I got this from the Flurry site when logged in after creating a new application
import com.sticksports.nativeExtensions.flurry.Flurry;
Flurry.startSession( "XXXXXXXXXXXXXXXXXXXX" );
Flurry.logEvent( "User did something" );
debugTxt.text = Flurry.flurryAgentVersion;
Flurry.endSession();
I have published an ipa for iPad and iPhone with no errors and installed on my iPad 2 (IOS 6).
The debugTxt displays 78
I am not encountering any errors.
However I cannot see anything appearing on the Flurry website in terms of any stats for this app. I tested this over 5 hours ago so am beginning to think it is not just a delay in the stats being updated.
Anyone successfully implement this?