Does anyone know how can I read the custom data se...
# ios
m
Does anyone know how can I read the custom data sent in APN payload (push notification) while app is started from inactive state? Preferrably in kotlin. I've tried to catch it in
AppDelegate
(didFinishLaunchingWithOptions, didReceiveRemoteNotifications) and
UNUserNotificationDelegate
on kotlin side as well as in swift but with no luck. 🤔 This is a case of user opening app by tapping notification when app was closed completly (not in background)
f
Honestly, you will find a Swift solution faster than a Kotlin solution If you are not familiar with the iOS ecosystem, do it in native way than in KMP way.
🙌 1