Skip to content

Releases: mParticle/mparticle-java-events-sdk

Version 2.3.0

08 Sep 21:21
Compare
Choose a tag to compare

Additional Identity Support

This release supports addition "other" user identities as well as mobile and phone number identities.

Version 2.2.0

20 Apr 22:01
Compare
Choose a tag to compare

Data Planning

This release adds support for Data Planning! You can now supply your desired data_plan_id and data_plan_version as properties of each Batch object:

Context context = new Context();
DataPlanContext dpContext = new DataPlanContext();
dpContext.planId("mobile_data_plan");
dpContext.planVersion(2);
context.dataPlan(dpContext);
batch.context(context);

You can read more about the Data Planning feature here: https://docs.mparticle.com/guides/data-master/

Version 2.0.0

22 Aug 22:30
Compare
Choose a tag to compare
  • New: This major release updates the SDK to be based on Retrofit.
  • New: The SDK has also been updated to include the latest mParticle Events API models