FlurryAgent:Agent cache file doesn't exist while implementing Flurry analytics in android -


i implementing flurry in application,and have written code following code,

@override protected void onstart()     {         // todo auto-generated method stub         super.onstart();     log.i(tag,"onstart");        flurryagent.onstartsession(this,keys.flurry_key);     flurryagent.setlogenabled(true);     flurryagent.setlogenabled(true);     flurryagent.setloglevel(log.info);     flurryagent.onevent("mainscreen");     flurryagent.logevent("user on home screen");     }  @override protected void onstop()     {         // todo auto-generated method stub         super.onstop();         flurryagent.onendsession(this);     } 

but after executing code above getting log as,

05-13 11:52:10.954: i/flurryagent(371): agent cache file doesn't exist. 05-13 11:52:10.954: i/flurryagent(371): generated id 

what mean? mean flurry not integrated in app? if not how can solve it?

note:i have included required permissions in manifest. running project in emulator.

can please use new flurry sdk v3.2.0, , retry? if issue persists, please send on mail support@flurry.com along api key.

(full disclosure: work in support team @ flurry)


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -