I am making a location tracking application for Android devices, but there is news that Google will no longer support Unbound Background Services with Android O onwards (Android will throw an IllegalStateException if you use the startService () method in future releases). Then the only option is to make an application with the Firebase JobDispatcher API, but my application needs constant location tracking, which can only be done using background services. Therefore, I need help with my approach on how I can constantly monitor the device and regularly update the server using location points even with this Firebase JobDispatcher API. I can not find a suitable site for reference. Thanks at Advance!
source share