This plugin will detect if app is running on android TV device or not.
cordova plugin add https://github.com/miloproductionsinc/cordova-plugin-isTvBox.git
window.plugins.isTvBox.checkTvBox(function(success) {
if(success === "TV Device"){
// for tv
} else{
//for non tv
}
}, function(err) {
console.log('Uh oh... ' + err);
});