Questions tagged [tizen-web-app]

Tizen SDK can be used to create interactive Web Applications for Mobile, Wearable, Television.

Tizen Web Application Model

Web App model

Web App package directory structure

Web App directory structure

Hybrid Application Package in Mobile Applications

Hybrid app directory structure

Tizen Mobile Web Application Programming

mw

Tizen Wearable Web Application Programming

ww

482 questions
2
votes
2 answers

How to set screensaver on/off and set custom screensaver in tizen web application for Samsung Smart TV?

For setting screensaver on/off we are using following API from AppCommon API webapis.appcommon.setScreenSaver( webapis.appcommon.AppCommonScreenSaverState.SCREEN_SAVER_ON, function(result) { console.log(result); }, function(error) { …
2
votes
0 answers

I am unable to install my app in Tizen emulator due to "Invalid certificate chain with certificate in signature error"

I have packaged my web based Tizen app in .wgt package. Previously, I used to run it in Tizen emulator without any problem. But, since last few days, I am unable to run it in emulator. Whenever I try to install the app in Tizen emulator, I get…
Mohsin Sethi
  • 803
  • 4
  • 16
2
votes
2 answers

Javascript Canvas blank Tizen webapp

I try to display video on canvas in a Samsung SmartTV (2017) with (TV extension 3.0) with Html5 & Javascript. Here is a my sample code:
Kate
  • 320
  • 1
  • 6
  • 19
2
votes
3 answers

Tizen watch app shows signing error when trying to install on Galaxy Watch

I am developing a web-based app on Tizen Studio 3.7 and I wish to install it on a Samsung Galaxy Watch. I am able to connect the watch to my PC via wifi, however, when I try to run the app I face the following error: " The application installation…
2
votes
2 answers

CLI Tizen build-web displays Invalid Password error

I'm trying to build a tizen web application for a Samsung Active 2 smartwatch from CLI (Arch linux) and I keep getting this error: [ERROR] Main.java(195) - org.tizen.common.sign.exception.CertificationException: Invaild password I've followed this…
2
votes
2 answers

How to Disable Text to speech Using Javascript?

I have created a Samsung smart-tv app using javascript and now I want to disable the TTS in this app but don't know how I can do this please help. I have tried using window.speechSynthesis but it is not working don't know why. currently what i have…
2
votes
3 answers

Tizen Studio - can't connect mac and tv

I try for several days now to install Tizen Studio and install an app on a Samsung Smart Tv. I'm on Mac right now (mac OS X 10.9.5), this is what I tried : 1/ Download and installation I downloaded the IDE installer and the CLI installer from here :…
2
votes
1 answer

Is there are proper way to develop Samsung TV (Tizen) app with React?

I need to develop an application for Samsung TV and I know it can be developed with Tizen Studio but I would like to use React. When I build React application and launch it on TV it works fine, however I need to access Samsung Product APIs that is…
2
votes
2 answers

Tizen web app not playing multiple custom audios

I'm looking to use multiple audio files in a tizen wearable web app. It works for 1 audio but no matter what i try it doesn't work for multiple. I've tried declaring multiple audio files and then passing them as a variable to a function with no…
Paul Clarke
  • 328
  • 2
  • 13
2
votes
2 answers

Why Tizen studio clear the local storage every time while running the tizen tv web app?

I'm developing a Samsung Smart TV wepApp using Tizen Studio. Where I'm using local web storage to store some data. So when I runs the app (Right click on project > Debug as > Tizen Web Application) for debugging, they clear the local store of old…
Victory
  • 1,184
  • 2
  • 11
  • 30
2
votes
2 answers

Parse JSON in Tizen Web App with TAU Library

Is there a simple way to parse a JSON with TAU library? I couldn't find any solution. I'm trying to get data from alphavantage api and display it: www.alphavantage.co/query?function=GLOBAL_QUOTE&symbol=MSFT&apikey=demo I've tried XMLhttprequest and…
grc
  • 304
  • 1
  • 5
  • 21
2
votes
1 answer

Unable to run bluetooth sample tizen watch app on emulator

I found a Bluetooth sample app in Tizen studio and this is developed by using HTML, CSS and js. When I try to install in emulator by using Tizen studio then it pop up an error which says "Error in Config File". please help me to solve this issue.
2
votes
1 answer

Prevent wearable wrist gesture to turn off screen

I am developing an app for the Samsung Gear S3 with the web API and TAU. I have turned on the wrist gesture that turns on the screen and turns it off, depending on the gesture. I would like to prevent that from happening, when I have my app running.…
Zim84
  • 3,404
  • 2
  • 35
  • 40
2
votes
1 answer

HTML5 video element extremely slow in Tizen (Samsung Smart-Tv development)

I've recently started programming within the Tizen environment and SDK, and I am trying to create a (Samsung)smart-tv application which takes mp4-media links and display those links in form of a video-player, the problem is that whenever I use the…
DanZoe
  • 111
  • 1
  • 3
  • 15
2
votes
1 answer

How to set Focus to tizen web app document object for eventListener? (Javascript)

I am developing a Tizen Webapp for Watches with bezel input. To listen for the Bezel rotation event on the HTML document I used the following code: rotaryDetentCallback = function rotaryDetentHandler(e) { var direction = e.detail.direction; …