Is there a reason that the Mediaplayer is calling the "onStateChange" of STOP while switching between videos?
This has not been the case previously in the simulator.
Can this now be expected to happen on the TV devices?
CODE
this._playerChangeDispatcher.subscribeTo(KONtx.mediaplayer, "onStateChange", this);
_playerChangeDispatcher: function (event) {
if(event.payload.newState == KONtx.mediaplayer.constants.states.STOP) {
print('**************************** STOP!!!!!!!!!!!!!!!!!!!! **********************************');
KONtx.application.previousView(this.config.current);
}
},
The above will fire between Playlist Entries playing - sending the application back to the previous view....