Android 5.1 Issues
-
Hi,
Sounds like a regression. You should check the bug report system to see if it's something known.
-
Update 2:
using this code seems to help on Android 5.1:
Connections {
target: Qt.application
onStateChanged: {
console.debug("applicationStateChanged: " + Qt.application.state)
if (Qt.application.state === Qt.ApplicationActive) {
applicationWindow.show()
//we're back from idle
}
else {
applicationWindow.hide()
//going to background
}
}
} -
You should check and fill a bug report about it. You can also talk about it on the #necessitas IRC channel
-
Actually... Tried it on another Android 4 device (a newer one)...and it works as expected, with the Connections code. Going to try this on other Android 4+ devices before filing a bug report.
The other device was running a 4.4.4 version of Cyanogenmod...so...