Reputation: 3127
In firebase, there is default event session_start which is automatically sent when a user engages the app for more than the minimum session duration.
What is minimum session duration if I don't change it? I can't find it anywhere in docs
Thanks!
Upvotes: 1
Views: 950
Reputation: 1088
At one time the default was 10 seconds. There is no longer a delay before the session starts. The session starts as soon as the app displays an Activity.
Upvotes: 0
Reputation: 1205
The default is 10 seconds, you can see it in the doc android, doc iOS
Quote of the android link (it is the same on iOS):
Sets the minimum engagement time required before starting a session. The default value is 10000 (10 seconds).
Upvotes: 2