Reputation: 863
I am interested in using Flurry in a number of Android apps.
I have read various site and know how I want to Flurry. What I need to understand is the impact on performance of using Flurry.
Can someone point me to a resource which discuss this?
When calling the FLurryAgent does it run on its own thread? etc..
Thanks
Upvotes: 1
Views: 830
Reputation: 30385
Any call to a Webservice should not be done on the main/UI thread. It's up to you to call the Flurry's registration method on another thread using AsyncTask for instance.
EDIT
Indeed, FlurryAgent
uses its own thread for all the calls. So no need to use AsyncTask
for that...
Upvotes: 0
Reputation: 3939
Actually FlurryAgent does use a thread:
DalvikVM[localhost:8630] (Suspended)
Thread [<1> main] (Suspended)
[...]
Thread [<9> FlurryAgent] (Suspended)
[...]
Upvotes: 2