I'm working on an installer which has different installation steps running in various fragments and services. If the phone is locked, the installation stops until the lock screen has been resolved, even listener callbacks are waiting for an user input.
I can catch intents from background services, but only with onNewIntent(Intent intent). onResume() is called after an user interaction only. Is it possible to force an activity to the foreground, even the phone is locked or do I need a different concept on a locked phone?
Regards