Skip to content

Release 3.5.0

Compare
Choose a tag to compare
@nan-li nan-li released this 30 Nov 19:09
· 256 commits to main since this release
5b26197

What's Changed

  • [Feature] Add iOS Live Activities support in #621 that include 2 methods for associating and deleting a temporary push token with an Activity ID on the OneSignal server.
    • Documentation to come
    • Example usage:
    OneSignal.shared.enterLiveActivity("your_activity_id", "your_token").then((v) {
      print("Successfully enter live activity");
    }).catchError((error) {
      print("Failed to enter live activity with error: $error");
    });

    OneSignal.shared.exitLiveActivity("your_activity_id").then((v) {
      print("Successfully exit live activity");
    }).catchError((error) {
      print("Failed to exit live activity: $error");
    });

Native SDK Updates

  • Update to OneSignal-iOS-SDK 3.12.3
    • Includes the iOS Live Activities support
  • No Android bump to 4.8.3, the SDK stays on 4.8.2

Full Changelog: 3.4.2...3.5.0