key code 10182 for Exit button in tizen studio does not work ? you proposals
document.addEventListener('keydown', function(event) {
if (event.keyCode === 10182) { // 101 is the key code for the Exit key on Samsung TVs
alert('Exit');
}
});
Assuming you have reviewed other prerequisites such as inputdevice privilege, definition of listeners, etc. from the official documentation in Samsung dev. Remote control maybe you are using the smart remote instead the basic remote which has two separate keys for back and exit functions
In the smart remote the function depends on the following:
Regards