Tracking Age & Gender in Flurry Analytics

Does anyone know how to enable tracking of Age and Gender in Flurry Analytics using Corona SDK?  We’re looking at creating a user profile page in our app in the future, and we would like to properly track that information.

I found this in their documentation:

http://support.flurry.com/?title=Analytics/GettingStarted/TechnicalQuickStart#Track_Age_and_Gender

Track Age and Gender

[Flurry setAge:21];

Use this to log the user’s age after identifying the user. Valid inputs are 0 or greater.

[Flurry setGender:@“m”];

Use this to log the user’s gender after identifying the user. Valid inputs are m (male) or f (female)

 

It looks like all we can do right now is log events using analytics.logEvent().  I wasn’t sure if anyone else has run into this or not.

 

Thanks,
Dave

I tried to use **analystics.setAge(int); **where int is age  but that ends up with error in Corona. There is nothing in the Corona documentation, I would say we can’t track age.

The work around I’m using is

analytics.logEvent( “NewPlayer”, { setAge=age } ) 

not so good but does the job

I tried to use **analystics.setAge(int); **where int is age  but that ends up with error in Corona. There is nothing in the Corona documentation, I would say we can’t track age.

The work around I’m using is

analytics.logEvent( “NewPlayer”, { setAge=age } ) 

not so good but does the job