05-05-2011 09:21 PM
I've written an HTTP Live Streaming client but the audio seems to cut out when a user manually dims the Playbook. I'm currently using NativeApplication.nativeApplication.systemIdleMode = SystemIdleMode.KEEP_AWAKE; to keep the Playbook from sleeping but I'd like to find a more elegant approach. Is there anyway to keep the music from stopping when placed in Sleep Mode?
Solved! Go to Solution.
05-05-2011 11:04 PM
You'll likely want to look into the QNXSystemPowerMode stuff, starting with the Knowledge Base article on it.
As a crude first test, try putting <inactivePowerMode>throttled</inactivePowerMode> in your blackberry-tablet.xml file, or use the equivalent code approach by setting
QNXSystem.system.inactivePowerMode = QNXSystemPowerMode.THROTTLED;
05-06-2011 07:57 AM
Wow that actually works! Nice find!
05-09-2011 01:25 PM