I want to integrate flurry analytics in my android application, it looks really simple. But i am not familiar with flurry and how it works.
Should i add the code :
public void onStart()
{
super.onStart();
FlurryAgent.onStartSession(sample, “APIXXXXXXXXXXXX”);
}
in every activity?
My application uses a lot of activities and i don't really care for tracking which of the activities is used, only the number of installations, sessions and session length. But is the session length available if the flurry code is only added in the startup activity?
I know most of the information i want is available in play store already, but i want to try this to have an overview of applications on different platforms.