Hi,
I have implemented multitasking using below code.
document.addEventListener("visibilitychange",function(){
//When going away from this app suspend player
if( document.hidden ){ // PAUSE
player.suspend();
} else { // RESUME
//When going back to this app resume player
player.resume();
}
});
But when i open third party app’s, my application terminating ,it is not staying in background, please help me how to implement multitasking for tizen tv.