{"id":36836,"date":"2016-06-27T20:57:36","date_gmt":"2016-06-27T15:27:36","guid":{"rendered":"http:\/\/www.tothenew.com\/blog\/?p=36836"},"modified":"2016-06-28T10:52:17","modified_gmt":"2016-06-28T05:22:17","slug":"building-samsung-smart-tv-application","status":"publish","type":"post","link":"https:\/\/www.tothenew.com\/blog\/building-samsung-smart-tv-application\/","title":{"rendered":"Building Samsung Smart TV Application"},"content":{"rendered":"<p>Samsung Smart TV allows developers to <a title=\"smart tv application development\" href=\"http:\/\/www.tothenew.com\/mobile-smart-tv-application-development\">develop TV-oriented applications<\/a> with extended functions using plugins. Smart TV applications are web-based software application that run on digital TVs connected to the Internet.<\/p>\n<p>With <a href=\"http:\/\/www.tothenew.com\/blog\/guidelines-and-solution-of-top-most-problems-regarding-video-application-in-samsung-smart-tv\/\">Samsung Smart TV applications<\/a>, TV users can access web content via their TV screens. Unlike general web pages, applications for Samsung Smart TV allow users to employ TV-specific features.<\/p>\n<p><strong>Installation Guide:<\/strong><\/p>\n<ol>\n<li>Install Java Runtime Environment (JRE)<\/li>\n<li>Download <a title=\"Samsung Smart TV SDK\" href=\"https:\/\/www.samsungdforum.com\/Devtools\/SdkDownload\" target=\"_blank\">Samsung Smart TV SDK<\/a><\/li>\n<li>Extract \u201cSamsung_Smart_TV_SDK_Windows_32\/64.zip\u201d<\/li>\n<li>Open \u201ceclipse.exe\u201d, choose your workspace. Check \u201cUse this as the default and do not ask again\u201d.<\/li>\n<\/ol>\n<p><strong>Installing Emulator:<\/strong><\/p>\n<ol>\n<li>Install Virtual Box<\/li>\n<li>Select File -&gt;Import Appliance<\/li>\n<li>Select Open Application and select the 2014_Smart_TV_Emulator_5_1.ova<\/li>\n<li>At import appliance settings, modify CPU to \u201c1\u201d<\/li>\n<li>After the Emulator is imported, a share folder must be set. Select the 2014_Smart_TV_Emulator and choose Setting -&gt; Shared Folders.<\/li>\n<\/ol>\n<p><strong>Basic Project Structure:<\/strong><br \/>\n<img decoding=\"async\" src=\"\/blog\/wp-ttn-blog\/uploads\/2016\/06\/project.png\" alt=\"Project Structure\" \/><\/p>\n<p>A Samsung Smart TV JavaScript application consists of the following items:<\/p>\n<ul>\n<li><strong>HTML pages:<\/strong> Shows the application\u2019s structure.<\/li>\n<li><strong>CSS files:<\/strong> Defines the application\u2019s style.<\/li>\n<li><strong>JavaScript files:<\/strong> Controls the application\u2019s behavior.<\/li>\n<li><strong>Config.xml file:<\/strong> A simple configuration file defining various settings and deployment information. Contains information on the operating environment and the application version.<\/li>\n<li><strong>Widget.info file:<\/strong> A very small file with a few lines used to define the opacity of the application&#8217;s body. This may not be required for full-screen applications.<\/li>\n<li><strong>Index.html:<\/strong> The main HTML file for your application.<\/li>\n<li><strong>Images, sounds and other resources.<\/strong><\/li>\n<\/ul>\n<p><strong>Making a Basic Application:<\/strong><\/p>\n<ol>\n<ol>\n<li>Select the \u201cCreate Samsung SmartTV JavaScript App Project\u201d<\/li>\n<\/ol>\n<\/ol>\n<p><img decoding=\"async\" src=\"\/blog\/wp-ttn-blog\/uploads\/2016\/06\/xyz.png\" alt=\"Add Project\" \/><\/p>\n<ol>\n<ol>\n<li>Select the menu to open the next window, here enter project name, path and application resolution.<\/li>\n<\/ol>\n<\/ol>\n<p><img decoding=\"async\" src=\"\/blog\/wp-ttn-blog\/uploads\/2016\/06\/xyz1.png\" alt=\"HelloTV\" \/><\/p>\n<ol>\n<li>Click the \u201cFinish\u201d button to finish creating a new project.<\/li>\n<\/ol>\n<p>Now make changes in Index.html, Main.js and Main.css as follows:<\/p>\n<p><strong>Index.html<\/strong><\/p>\n<p>[java]<br \/>\n&lt;!DOCTYPE html&gt;<br \/>\n&lt;html&gt;<br \/>\n&lt;head&gt;<br \/>\n&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text\/html; charset=utf-8&quot;&gt;<br \/>\n&lt;title&gt;Hello World&lt;\/title&gt;<\/p>\n<p>&lt;!&#8211; TODO : Common API &#8211;&gt;<br \/>\n&lt;script type=&quot;text\/javascript&quot; language=&quot;javascript&quot; src=&quot;$MANAGER_WIDGET\/Common\/API\/Widget.js&quot;&gt;&lt;\/script&gt;<br \/>\n&lt;script type=&quot;text\/javascript&quot; language=&quot;javascript&quot; src=&quot;$MANAGER_WIDGET\/Common\/API\/TVKeyValue.js&quot;&gt;&lt;\/script&gt;<\/p>\n<p>&lt;!&#8211; TODO : Javascript code &#8211;&gt;<br \/>\n&lt;script language=&quot;javascript&quot; type=&quot;text\/javascript&quot; src=&quot;app\/javascript\/Main.js&quot;&gt;&lt;\/script&gt;<\/p>\n<p>&lt;!&#8211; TODO : Style sheets code &#8211;&gt;<br \/>\n&lt;link rel=&quot;stylesheet&quot; href=&quot;app\/stylesheets\/Main.css&quot; type=&quot;text\/css&quot;&gt;<br \/>\n&lt;\/head&gt;<\/p>\n<p>&lt;body onload=&quot;Main.onLoad();&quot; onunload=&quot;Main.onUnload();&quot;&gt;<br \/>\n\t&lt;!&#8211; Dummy anchor as focus for key events &#8211;&gt;<br \/>\n\u00a0\u00a0\u00a0 &lt;a href=&quot;javascript:void(0);&quot; id=&quot;anchor&quot; onkeydown=&quot;Main.keyDown();&quot;&gt; &lt;\/a&gt;<\/p>\n<p>\u00a0\u00a0\u00a0 &lt;!&#8211; TODO: your code here &#8211;&gt;<br \/>\n\u00a0\u00a0\u00a0 &lt;label id=&quot;LabelId&quot;&gt;Samsung Smart TV&lt;\/label&gt;<br \/>\n&lt;\/body&gt;<br \/>\n&lt;\/html&gt;<br \/>\n[\/java]<\/p>\n<p><strong>Main.js<\/strong><\/p>\n<p>[java]<br \/>\nvar widgetAPI = new Common.API.Widget();<br \/>\nvar tvKey = new Common.API.TVKeyValue();<\/p>\n<p>var Main ={};<\/p>\n<p>Main.onLoad = function()<br \/>\n{<br \/>\n\t\/\/ Enable key event processing<br \/>\n\tthis.enableKeys();<br \/>\n\twidgetAPI.sendReadyEvent();<br \/>\n};<\/p>\n<p>Main.onUnload = function()<br \/>\n{<br \/>\n};<\/p>\n<p>Main.enableKeys = function()<br \/>\n{<br \/>\n\tdocument.getElementById(&quot;anchor&quot;).focus();<br \/>\n};<\/p>\n<p>Main.keyDown = function()<br \/>\n{<br \/>\n\tvar keyCode = event.keyCode;<br \/>\n\talert(&quot;Key pressed: &quot; + keyCode);<\/p>\n<p>switch(keyCode)<br \/>\n{<br \/>\n\tcase tvKey.KEY_RETURN:<br \/>\n\tcase tvKey.KEY_PANEL_RETURN:<br \/>\n\t\talert(&quot;RETURN&quot;);<br \/>\n\t\twidgetAPI.sendReturnEvent();<br \/>\n\t\tbreak;<br \/>\n\tcase tvKey.KEY_LEFT:<br \/>\n\t\talert(&quot;LEFT&quot;);<br \/>\n\t\tdocument.getElementById(&quot;LabelId&quot;).innerHTML = &quot;Smart TV &#8211; LEFT&quot;;<br \/>\n\t\tbreak;<br \/>\n\tcase tvKey.KEY_RIGHT:<br \/>\n\t\talert(&quot;RIGHT&quot;);<br \/>\n\t\tdocument.getElementById(&quot;LabelId&quot;).innerHTML = &quot;Smart TV &#8211; RIGHT&quot;;<br \/>\n\t\tbreak;<br \/>\n\tcase tvKey.KEY_UP:<br \/>\n\t\talert(&quot;UP&quot;);<br \/>\n\t\tbreak;<br \/>\n\tcase tvKey.KEY_DOWN:<br \/>\n\t\talert(&quot;DOWN&quot;);<br \/>\n\t\tbreak;<br \/>\n\tcase tvKey.KEY_ENTER:<br \/>\n\t\tdocument.getElementById(&quot;LabelId&quot;).innerHTML = &quot;Smart TV &#8211; Center&quot;;<br \/>\n\t\tbreak;<br \/>\n\tcase tvKey.KEY_PANEL_ENTER:<br \/>\n\t\talert(&quot;ENTER&quot;);<br \/>\n\t\tbreak;<br \/>\n\tdefault:<br \/>\n\t\talert(&quot;Unhandled key&quot;);<br \/>\n\tbreak;<br \/>\n}<br \/>\n};<br \/>\n[\/java]<\/p>\n<p><strong>Main.css<\/strong><\/p>\n<p>[code language=&#8221;css&#8221;]<br \/>\n*<br \/>\n{<br \/>\n\tpadding: 0;<br \/>\n\tmargin: 0;<br \/>\n\tborder: 0;<br \/>\n}<\/p>\n<p>\/* Layout *\/<br \/>\nbody<br \/>\n{<br \/>\n\twidth: 960px;<br \/>\n\theight: 540px;<br \/>\n\tbackground-color: #FFF;<br \/>\n}<\/p>\n<p>#LabelId<br \/>\n{<br \/>\n\tfont-size: 250px;<br \/>\n}<br \/>\n[\/code]<\/p>\n<p>A successful run of this sample application result into a fullscreen application with a text written on the screen <strong>Samsung Smart TV<\/strong>. When user press left, right, center or enter button on the remote the text is changing simultaneously. Run this application and enjoy coding with Samsung Smart TV.<\/p>\n<p>Hope this was useful to the readers.<\/p>\n<p>Happy Coding \ud83d\ude42<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Samsung Smart TV allows developers to develop TV-oriented applications with extended functions using plugins. Smart TV applications are web-based software application that run on digital TVs connected to the Internet. With Samsung Smart TV applications, TV users can access web content via their TV screens. Unlike general web pages, applications for Samsung Smart TV allow [&hellip;]<\/p>\n","protected":false},"author":167,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":37,"footnotes":""},"categories":[3479,3477,1772],"tags":[3519,3628,3629,3632],"class_list":["post-36836","post","type-post","status-publish","format-standard","hentry","category-connected-tv","category-media-entertainment","category-mobility","tag-samsung-smart-tv","tag-samsung-tv","tag-smarttv","tag-smarttv-development"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Samsung Smart TV allows developers to develop TV-oriented applications with extended functions using plugins. Smart TV applications are web-based software application that run on digital TVs connected to the Internet. With Samsung Smart TV applications, TV users can access web content via their TV screens. Unlike general web pages, applications for Samsung Smart TV allow\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Simranjit Kour\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.tothenew.com\/blog\/building-samsung-smart-tv-application\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"Building Samsung Smart TV Application | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"Samsung Smart TV allows developers to develop TV-oriented applications with extended functions using plugins. Smart TV applications are web-based software application that run on digital TVs connected to the Internet. With Samsung Smart TV applications, TV users can access web content via their TV screens. Unlike general web pages, applications for Samsung Smart TV allow\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.tothenew.com\/blog\/building-samsung-smart-tv-application\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Building Samsung Smart TV Application | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Samsung Smart TV allows developers to develop TV-oriented applications with extended functions using plugins. Smart TV applications are web-based software application that run on digital TVs connected to the Internet. With Samsung Smart TV applications, TV users can access web content via their TV screens. Unlike general web pages, applications for Samsung Smart TV allow\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/building-samsung-smart-tv-application\\\/#article\",\"name\":\"Building Samsung Smart TV Application | TO THE NEW Blog\",\"headline\":\"Building Samsung Smart TV Application\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/simranjit-kaur\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"\\\/blog\\\/wp-ttn-blog\\\/uploads\\\/2016\\\/06\\\/project.png\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/building-samsung-smart-tv-application\\\/#articleImage\"},\"datePublished\":\"2016-06-27T20:57:36+05:30\",\"dateModified\":\"2016-06-28T10:52:17+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/building-samsung-smart-tv-application\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/building-samsung-smart-tv-application\\\/#webpage\"},\"articleSection\":\"Connected TV, Media &amp; Entertainment, Mobility, Samsung Smart Tv, Samsung TV, SmartTV, SmartTv Development\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/building-samsung-smart-tv-application\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/mobility\\\/#listItem\",\"name\":\"Mobility\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/mobility\\\/#listItem\",\"position\":2,\"name\":\"Mobility\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/mobility\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/building-samsung-smart-tv-application\\\/#listItem\",\"name\":\"Building Samsung Smart TV Application\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/building-samsung-smart-tv-application\\\/#listItem\",\"position\":3,\"name\":\"Building Samsung Smart TV Application\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/mobility\\\/#listItem\",\"name\":\"Mobility\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/simranjit-kaur\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/simranjit-kaur\\\/\",\"name\":\"Simranjit Kour\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/building-samsung-smart-tv-application\\\/#authorImage\",\"url\":\"https:\\\/\\\/newersworld-sf-static.tothenew.net\\\/prod\\\/profilePicFolder\\\/a7102234-00e4-4dfb-8bc6-c51adf76700d_simranjit.kour@tothenew.com.jpg\",\"width\":96,\"height\":96,\"caption\":\"Simranjit Kour\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/building-samsung-smart-tv-application\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/building-samsung-smart-tv-application\\\/\",\"name\":\"Building Samsung Smart TV Application | TO THE NEW Blog\",\"description\":\"Samsung Smart TV allows developers to develop TV-oriented applications with extended functions using plugins. Smart TV applications are web-based software application that run on digital TVs connected to the Internet. With Samsung Smart TV applications, TV users can access web content via their TV screens. Unlike general web pages, applications for Samsung Smart TV allow\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/building-samsung-smart-tv-application\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/simranjit-kaur\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/simranjit-kaur\\\/#author\"},\"datePublished\":\"2016-06-27T20:57:36+05:30\",\"dateModified\":\"2016-06-28T10:52:17+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Building Samsung Smart TV Application | TO THE NEW Blog","description":"Samsung Smart TV allows developers to develop TV-oriented applications with extended functions using plugins. Smart TV applications are web-based software application that run on digital TVs connected to the Internet. With Samsung Smart TV applications, TV users can access web content via their TV screens. Unlike general web pages, applications for Samsung Smart TV allow","canonical_url":"https:\/\/www.tothenew.com\/blog\/building-samsung-smart-tv-application\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.tothenew.com\/blog\/building-samsung-smart-tv-application\/#article","name":"Building Samsung Smart TV Application | TO THE NEW Blog","headline":"Building Samsung Smart TV Application","author":{"@id":"https:\/\/www.tothenew.com\/blog\/author\/simranjit-kaur\/#author"},"publisher":{"@id":"https:\/\/www.tothenew.com\/blog\/#organization"},"image":{"@type":"ImageObject","url":"\/blog\/wp-ttn-blog\/uploads\/2016\/06\/project.png","@id":"https:\/\/www.tothenew.com\/blog\/building-samsung-smart-tv-application\/#articleImage"},"datePublished":"2016-06-27T20:57:36+05:30","dateModified":"2016-06-28T10:52:17+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.tothenew.com\/blog\/building-samsung-smart-tv-application\/#webpage"},"isPartOf":{"@id":"https:\/\/www.tothenew.com\/blog\/building-samsung-smart-tv-application\/#webpage"},"articleSection":"Connected TV, Media &amp; Entertainment, Mobility, Samsung Smart Tv, Samsung TV, SmartTV, SmartTv Development"},{"@type":"BreadcrumbList","@id":"https:\/\/www.tothenew.com\/blog\/building-samsung-smart-tv-application\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.tothenew.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/category\/mobility\/#listItem","name":"Mobility"}},{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/category\/mobility\/#listItem","position":2,"name":"Mobility","item":"https:\/\/www.tothenew.com\/blog\/category\/mobility\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/building-samsung-smart-tv-application\/#listItem","name":"Building Samsung Smart TV Application"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/building-samsung-smart-tv-application\/#listItem","position":3,"name":"Building Samsung Smart TV Application","previousItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/category\/mobility\/#listItem","name":"Mobility"}}]},{"@type":"Organization","@id":"https:\/\/www.tothenew.com\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/www.tothenew.com\/blog\/"},{"@type":"Person","@id":"https:\/\/www.tothenew.com\/blog\/author\/simranjit-kaur\/#author","url":"https:\/\/www.tothenew.com\/blog\/author\/simranjit-kaur\/","name":"Simranjit Kour","image":{"@type":"ImageObject","@id":"https:\/\/www.tothenew.com\/blog\/building-samsung-smart-tv-application\/#authorImage","url":"https:\/\/newersworld-sf-static.tothenew.net\/prod\/profilePicFolder\/a7102234-00e4-4dfb-8bc6-c51adf76700d_simranjit.kour@tothenew.com.jpg","width":96,"height":96,"caption":"Simranjit Kour"}},{"@type":"WebPage","@id":"https:\/\/www.tothenew.com\/blog\/building-samsung-smart-tv-application\/#webpage","url":"https:\/\/www.tothenew.com\/blog\/building-samsung-smart-tv-application\/","name":"Building Samsung Smart TV Application | TO THE NEW Blog","description":"Samsung Smart TV allows developers to develop TV-oriented applications with extended functions using plugins. Smart TV applications are web-based software application that run on digital TVs connected to the Internet. With Samsung Smart TV applications, TV users can access web content via their TV screens. Unlike general web pages, applications for Samsung Smart TV allow","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.tothenew.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.tothenew.com\/blog\/building-samsung-smart-tv-application\/#breadcrumblist"},"author":{"@id":"https:\/\/www.tothenew.com\/blog\/author\/simranjit-kaur\/#author"},"creator":{"@id":"https:\/\/www.tothenew.com\/blog\/author\/simranjit-kaur\/#author"},"datePublished":"2016-06-27T20:57:36+05:30","dateModified":"2016-06-28T10:52:17+05:30"},{"@type":"WebSite","@id":"https:\/\/www.tothenew.com\/blog\/#website","url":"https:\/\/www.tothenew.com\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.tothenew.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"Building Samsung Smart TV Application | TO THE NEW Blog","og:description":"Samsung Smart TV allows developers to develop TV-oriented applications with extended functions using plugins. Smart TV applications are web-based software application that run on digital TVs connected to the Internet. With Samsung Smart TV applications, TV users can access web content via their TV screens. Unlike general web pages, applications for Samsung Smart TV allow","og:url":"https:\/\/www.tothenew.com\/blog\/building-samsung-smart-tv-application\/","og:image":"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Building Samsung Smart TV Application | TO THE NEW Blog","twitter:description":"Samsung Smart TV allows developers to develop TV-oriented applications with extended functions using plugins. Smart TV applications are web-based software application that run on digital TVs connected to the Internet. With Samsung Smart TV applications, TV users can access web content via their TV screens. Unlike general web pages, applications for Samsung Smart TV allow","twitter:image":"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"36836","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","og_object_type":"blog","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":"","og_article_tags":"","twitter_use_og":false,"twitter_card":"summary","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-29 14:39:13","updated":"2024-02-29 09:21:52","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.tothenew.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.tothenew.com\/blog\/category\/mobility\/\" title=\"Mobility\">Mobility<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tBuilding Samsung Smart TV Application\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.tothenew.com\/blog"},{"label":"Mobility","link":"https:\/\/www.tothenew.com\/blog\/category\/mobility\/"},{"label":"Building Samsung Smart TV Application","link":"https:\/\/www.tothenew.com\/blog\/building-samsung-smart-tv-application\/"}],"_links":{"self":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts\/36836","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/users\/167"}],"replies":[{"embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/comments?post=36836"}],"version-history":[{"count":0,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts\/36836\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/media?parent=36836"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/categories?post=36836"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/tags?post=36836"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}