snowplow / snowplow-android-tracker

Snowplow event tracker for Android. Add analytics to your Android apps and games
http://snowplowanalytics.com
Apache License 2.0
107 stars 63 forks source link

Change default buffer option to single #649

Closed matus-tomlein closed 5 months ago

matus-tomlein commented 7 months ago

Even though we state the default buffer option in the tracker is 10, in practice the buffer option is 1 (due to issue #648). This means that events are sent right when they are tracked.

This is also the configuration on the JavaScript tracker (buffer size 1) and is a good default to use in client side apps to prevent some events hanging in the event store when the app is quit/uninstalled earlier than the event store is cleared.

After fixing issue #648, in order to keep this behaviour, we will need to change the default buffer size to 1.