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
SDK will now hold opened push notifications until pushNotificationsDelegate is set.
In-app message clicked event now contains property text with label of the button that was interacted with.
XCode 12.2 and Swift 5.3.1 compatibility.
Bug Fixes
BREAKING CHANGE:
The SDK now processes notification open events that start the application. Before, the app had to running and minimized for the notification to be processed.
To respond to notifications that start the application, the SDK needs to run some processing in application:didFinishLaunchingWithOptions. ExponeaAppDelegate now implements this method where it processes the notification and sets notification center delegate. Your AppDelegate application:didFinishLaunchingWithOptions now requires a override keyword and a call to supersuper.application(application, didFinishLaunchingWithOptions: launchOptions). Calling Exponea.shared.pushNotificationsDelegate = self is no longer required. See push notifications documentation for more details.
Fixed: Events are now sorted based on timestamp before uploading to Exponea servers.