Hacker News new | ask | show | jobs
by vonseel 2481 days ago
If you were building an app that needs to do something like this in the background today, what is the recommended approach if you're on a platform like React-Native? Can JS even be reliably executed in the background?
1 comments

For the vast majority of cases it’s better to just use the Apple push notification API and not try to keep a background process running constantly.
What if you need to decrypt the payload?