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
I have integrated this in my app. I want to perform task in background when location meets specific latitude and longitude. BackgroundGeolocation.on('location', (location) => { ToastAndroid.show("Location: latitude: " + location.latitude + " longitude: " + location.longitude, ToastAndroid.SHORT); });
I have tried to toast message here. But it is not working when my app is killed from task manager.
Guide me that how can I make it run in background.
The text was updated successfully, but these errors were encountered:
I have integrated this in my app. I want to perform task in background when location meets specific latitude and longitude.
BackgroundGeolocation.on('location', (location) => { ToastAndroid.show("Location: latitude: " + location.latitude + " longitude: " + location.longitude, ToastAndroid.SHORT); });
I have tried to toast message here. But it is not working when my app is killed from task manager.
Guide me that how can I make it run in background.
The text was updated successfully, but these errors were encountered: