Releases: mParticle/mparticle-java-events-sdk
Releases · mParticle/mparticle-java-events-sdk
Version 2.3.2
This release fixes the serialization of the mobile_number user identity by renaming "mobile_phone" to "mobile_number".
Version 2.3.1
This fixes a bug with the previous 2.3.0 release, ensuring that the additional identities are available as both an IdentityType enum as well as within the UserIdentities object.
Version 2.3.0
Additional Identity Support
This release supports addition "other" user identities as well as mobile and phone number identities.
Version 2.2.0
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
- 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