Added

Android SDK 3.0.14

This release adds attribute support for chat messages, comments, and profiles. It also adds root-level reaction APIs for querying and counting reactions across multiple reaction spaces and targets and targetGroups alongside the socal graph update

Attributes on chat messages, comments, and profiles

Chat messages, comments, and profiles now expose attributes. Added an attributes property to these objects:

  • LiveLikeChatMessage
  • Comment
  • LiveLikeProfile

Reactions

Added root-level SDK.reaction() reaction client singleton methods:
The existing sdk.reactionSession() API remains unchanged.

  • getUserReactions(request, callback) — returns UserReaction records across multiple targets, target groups, and/or reaction spaces.

    - Required: at least one non-empty reactionSpaceIds or targetGroupIds list

    - Optional: targetIds, reactionId, reactedById, relationship filters, and pagination

  • getUserReactionsCount(request, callback) — returns reaction totals per target.

    - Required: one reactionSpaceId

    - Optional: targetIds, reactedById, relationship filters, and pagination

    - Supports multiple targetIdsin one request



    SDK.reaction()

    -Added support for ad-hoc or batched queries across one or more reaction spaces, target groups, and targets.

    SDK.reactionSession()

    - Use when working within one configured reaction space.


More info