Hi everyone
In my app I need to send notifcations to the user during a period that’s pretty much always around 15 minutes long.
I achieved this by using a combination of the native libraries vibration, background-mode and local-notifications.
The app works superb!
The only issue is, that when I test the app on a real device using xcode, I get the following warning:
THREAD WARNING: ['BackgroundMode'] took '108.111084' ms. Plugin should use a background thread.
Does this mean that background-mode doesn’t really run in the background?
Is this a bad thing?