Mixpanel v5.1.0 Release Notes

  • May 22nd - 2017

    🚀 With this release we are adding automatic tracking of common mobile events. ⚡️ These events include tracking app sessions, first app opens, app updated, and app crashed.

    The feature will be rolled out slowly to all our users, and can be turned on in Project settings under Autotrack.

    🔧 To configure the tracking of app sessions, we now expose two new configurations to provide lower and upper bounds on the session lengths that your app will track. For example, to only track app sessions with a minimum duration of 3 seconds and maximum duration of 5 minutes:

    <meta-data android:name="com.mixpanel.android.MPConfig.MinimumSessionDuration"
                android:value="3000" />
    
    <meta-data android:name="com.mixpanel.android.MPConfig.SessionTimeoutDuration"
                android:value="300000" />