I have this qml application:
Window {
visible: true
Timer {
onTriggered: console.log("foo")
interval: 100
repeat: true
running: true
}
}
on my pc it works but when I run it on Android and I put the app into the background the Timer
stops from triggering signals.
How can I make it work correctly on Android?
I'm using Qt 5.5 and I wish to run the app on Android >= 5.1.