Samsung Smart TV Tizen Spike

tags: #Work/stonehenge/samsung

Important Documentation/Links for Development


Additional Resources


Samsung Account Login


General questions I want to figure out


  1. How do I use WIT
  2. How do I use TOAST - it’s a plugin that you us in a Cordova app.
  3. What’s the difference between TV 4.0 & 5.0 ::4.0 is 2018 Models - 5.0 is 2019 Models::
  4. Should we use a Cordova wrapper (preferred) or another solution? If there is a demand to support legacy devices (TV < 2015) then I would suggest using “Toast”, which is a plugin for Cordova. Outside of that it's easiest to just make the web
  5. Find solution that works with web-kit / chromium (for TV's < 2015) - TOAST w/ Cordova
  6. Aria support (text to speech) - There is an API for this
  7. Speech-to-text-support - There is an API for this
  8. What would a non-hosted solution be? This is the least friendly way to do development, but if you move a build over to the Tizen Project and correct the file paths it works, with privileges.

Getting Started

Installation process


  1. Download Tizen Studio ::for 2015 - 2019 Models::

  2. Follow Installation Guide

  3. The Package Manager should open automatically. Inside thePackage Manager > Main SDK you’ll want to install ::5.0 & 4.0 TV:: SDK’s

  4. Inside thePackage Manager > Extension SDK you’ll want to install

    1. ::TV Extensions-5.0::
    2. ::Samsung Certificate Extension::
    3. ::TV Extensions Tools::

First (basic) TV Application


  1. Follow Creating TV Applications
  2. Using a Sample application lets you see how things are set up, Template will be what we ultimately want.
  3. Once you’ve create a project you’ll want to follow Using SDK > TV Device to run your application on the actual device. ::PREREQUISITES - TV has latest firmware, TV & Computer on same network, and create certificate profile::

It will give you a Certificate location & you’ll provide a Backup Path This is VERY important when you get to the actually pushing to the store, but for development and playing around you can just delete them and create no problem.

  1. Distributor Certificate you’ll need the Device Unique ID (DUID), which can be found in your TV Settings > Support > About This TV

Connecting Computer to Samsung TV

::This is best done with an ethernet connection::


  1. Put the target TV in “Developer Mode” Connecting the TV & SDK Essentially go to the “Apps” page and using the remote enter “1, 2, 3, 4, 5” and enter in your computer’s IP address ::Make sure you’re on the same network::
  2. Using the Device Manager that comes with Tizen IDE you should be able to toggle the connection. Although, it’s pretty consistent if you run into issues using sdb Smart developer bridge, which is a tool that comes with the installation of Tizen you can run the command sdb connect <target-IP> and being able to see currently connected devices sdb devices
  3. To run the project most documentation shows using the top “Play” icon, which I personally ended up getting an error stating “Closed”. To get around this there are two options. 3.1 - If you right-click the project in the Explorer view and select Run As > 1. Tizen Web Application even though this seems to be the same as above, it for whatever reason works. 3.2 - You can use the tizen cli tool by running the command tizen install -n <project-build-file>.wgt to get a *.wgt file, which is an extension that represents a “widget” (Tizens way of zipping up a build version of the web-app). Tizen’s IDE crashes when it has to build anything that’s bigger than their example projects, so I installed the VSCode tizen extension, which has commands to build the project that goes way faster. cmd + shift + p & Tizen Build Package