How to wake up an application when a screen saver is displayed

I have an application that is hiding (but still running in the background) when the splash screen launches on the 4th generation Apple TV.

How can I bring the application to the foreground (hide the screen saver) when an event (updating to the endpoint, which I have been viewing for a long time) occurs in my application that runs in the background?

+4
source share
1 answer

I don’t think there is a way to do this. When the screen saver is running, your application may still be a priority application, but it will be inactive. This is similar to what happens on iOS when the user locks the screen while using the application. Like the iOS lock screen, the user can actively use the system when it is in this state. For example, you can use Siri without dropping the screen saver.

+1
source

Source: https://habr.com/ru/post/1609397/


All Articles