You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added Live Updates support via the new pushwoosh-liveupdates module — ongoing, progress-style notifications (Android 16 / API 36+) that the SDK renders automatically from server-sent pushes, ideal for order tracking, deliveries, rides, and live scores. The Pushwoosh backend drives every start/update/end transition; the app can dismiss a Live Update locally and query which ones are on screen. Customize the look by implementing LiveUpdateProgressStyleProvider. On devices below API 36 the module is a safe no-op
// Query the activityIds of all Live Updates currently on screenList<String> active = PushwooshLiveUpdates.getActiveIds();
// Dismiss a specific Live Update from the app, e.g. when the user cancels an orderPushwooshLiveUpdates.endLiveUpdate("order_4521");
// Or clear everything currently on screen, e.g. on logoutPushwooshLiveUpdates.endAllLiveUpdates();
Improvements
The SDK now validates manifest-declared classes at startup (NotificationServiceExtension, notification factories, plugins, and add-on integration points) and logs clear, actionable warnings when a class is missing, declares the wrong base type, or lacks a public no-argument constructor