BradyBrenot / huestacean

Philips Hue control app for desktop with screen syncing. C++ with Qt Quick GUI.
http://huestacean.com
Apache License 2.0
566 stars 54 forks source link

Android TV - Process dies when backgrounded on Fire TV #68

Closed BradyBrenot closed 5 years ago

BradyBrenot commented 6 years ago

The only way I can figure to get around this is to split the backend and frontend off into separate processes, then make the backend a Foreground Service.

koying commented 6 years ago

It doesn't have to be different processes (in the applicative understanding). All activities of an app run in the same process. You "only" have to create a GUI activity and a hue handling Foreground service, but they share the same process.

BradyBrenot commented 5 years ago

Folded into #126