Releases: mixpanel/mixpanel-android
Release v6.4.0
v6.4.0 (2022-06-30)
Enhancements
- Support defining multiple instances by specifying
instanceName
ingetInstance
#792
This release adds the following APIs to MixpanelAPI:
/**
...
* @param instanceName The name you want to uniquely identify the Mixpanel Instance.
It is useful when you want more than one Mixpanel instance under the same project token.
...
**/
getInstance(Context context, String token, String instanceName)
getInstance(Context context, String token, boolean optOutTrackingDefault, String instanceName)
getInstance(Context context, String token, JSONObject superProperties, String instanceName)
getInstance(Context context, String token, boolean optOutTrackingDefault, JSONObject superProperties, String instanceName)
Please note: If you are going to add instanceName
to getInstance
on your existing implementation. getInstance
will start using instanceName
as the instance identifier rather than token
, so you might lose some of the stored properties including the distinct Id under the token
. We'd recommend using it when you need to create more than one instance under the same project token. You won't lose any events and user profile updates.
Release v6.3.0
Release v6.2.2
Release v6.2.1
Release v6.2.0
Release v6.1.1
Release v6.1.0
Release v6.0.0
Release v6.0.0-beta2
v6.0.0-beta2 (2021-12-18)
- Deprecate both the Mixpanel default property
$google_play_services
and tracking Install Referrer in favor of not being marked as containing Ads.
On Jan 1, 2022, we’ll remove the Messages & Experiments feature from Mixpanel. For now, you can choose to opt into our beta version without the Messages & Experiments feature support.
The beta version v6.0.0-beta2 is in parity with v5.9.6 but without the Messages & Experiments feature support. For more details, see our changelog
To install this SDK, see our integration guide
Release v5.9.6
v5.9.6 (2021-12-14)
- Remove integrations code for braze and airship #770
From this version, Mixpanel SDK no longer sets property $braze_external_id
and $android_urban_airship_channel_id
automatically. Please refer to this doc for the integration setup guide if you need to export Mixpanel Cohorts to Braze or Airship.
- Readme change: rebrand for live view report to events report #767