Hello,
I am developing an internal Android application for enterprise use that will not be uploaded to Google Play. The goal is to sequentially call third-party apps at specific intervals, keeping my app in the background.
Here's the scenario:
Is there a way for my app to bring itself back to the foreground after receiving an FCM notification or to handle sequential app launching when it’s running in the background? How can I ensure that my app continues to launch third-party apps even when it’s not in the foreground?
Any advice or best practices for handling this use case in an enterprise environment would be greatly appreciated.
I am developing an internal Android application for enterprise use that will not be uploaded to Google Play. The goal is to sequentially call third-party apps at specific intervals, keeping my app in the background.
Here's the scenario:
- My app is active and in the foreground.
- I send an FCM notification to the app containing the package name of a third-party app, and then launch that app using an intent.
- After a certain period, I send another FCM notification with a new package name to open a different third-party app.
Is there a way for my app to bring itself back to the foreground after receiving an FCM notification or to handle sequential app launching when it’s running in the background? How can I ensure that my app continues to launch third-party apps even when it’s not in the foreground?
Any advice or best practices for handling this use case in an enterprise environment would be greatly appreciated.