Sjk
Sjk

Reputation: 387

Flurry: if flurry events added without start/end session, will it show on flurry site?

If flurry events are added in an activity without adding startsession / endsession in onStart/onStop will it log on the flurry site

? Previous activity is having startsession / endsession in its onStart/onStop. Can anyone help?

Upvotes: 0

Views: 865

Answers (2)

Aman Bansal
Aman Bansal

Reputation: 1579

Flurry will not consider an activity if it doesn't have a call to onStartSession. So long as there is any Context that has called onStartSession but not onEndSession, the session will be continued. This also means that Events will not be logged for that particular activity.

(Full disclosure: I work at Flurry)

Upvotes: 4

Emil Adz
Emil Adz

Reputation: 41099

For what I know, no! If you are not starting a session then the server side won't know to which session to added that specific event to.

What I mean by that is that is that Flurry does not have indication of the the user details if there was not session created.

Previous activity is having startsession / endsession in onStart/onStop

The fact the previous activity does have does method doesn't change anything because as you start Flurry session in this activity in onStart you end it in onStop. so the session does not continue to exist in the following activity.

Upvotes: 1

Related Questions