I have this code in my app just testing it out. The notification works just fine after 15 seconds. However, when tapping the notification it just removes it. It doesn’t actually launch the app. Is there something that I’m missing here?
local options = { alert = "Wake up!" } local notificationId = system.scheduleNotification(15, options)
Edit: After some testing it seems to work if I close the app (click the back button) however, if I press the home button it doesn’t take me into the app.
Edit2: After more testing it doesn’t appear to work on either now. I did notice that if I have 2 notifications come through at the same time one of them will work and the other one wont. If I have 1 come through then it never works.