user964283
user964283

Reputation: 863

Impact of using Flurry on Android

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

Answers (2)

Amokrane Chentir
Amokrane Chentir

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 AsyncTaskfor that...

Upvotes: 0

Sofi Software LLC
Sofi Software LLC

Reputation: 3939

Actually FlurryAgent does use a thread:

DalvikVM[localhost:8630] (Suspended)
Thread [<1> main] (Suspended)
[...] Thread [<9> FlurryAgent] (Suspended)

[...]

Upvotes: 2

Related Questions