tizen

Tyzen studio package manager does not open with java nullpointer execption. and many tools can not open

廉价感情. 提交于 2020-05-17 06:56:50
问题 I am having lots of issues with windows version of Tizen studio such as emulator manager, control panel doesn't open. So I tried mac version but installing it on startup it could not open package manager with "Failed to execute runnable (java.lang.NullPointerException) cause: null" error, despite having valid JDK 11 and latest installer 3.6. No valid solution found so far. So should we abandon Tizen studio for lack of support and improvements? Does any one has solution? EDIT - Solution: I was

JavaScript not working in Tizen Web Widget

ε祈祈猫儿з 提交于 2020-03-25 13:42:26
问题 I'm working on a Tizen Web Widget Application. My javaScript file resides in MyProject >> widget >> MyProject >> js >> main.js . Even if I change the text of an element in the window.onload() method, it doesn't work. I've also tried the accepted answer of this question but this also didn't work for me. Someone please guide me if there's any other check which I'm missing. 回答1: When writing a Web Widget, the most problems are caused by fact, that it has limited number of features supported. The

Can I create Tizen web app with wifi and speech recognition functionality?

 ̄綄美尐妖づ 提交于 2020-01-25 21:24:48
问题 I am new to Tizen development. I just want to know whether I can use WIFI manager and speech recognition functionality with web app in tizen. If yes how? 回答1: Unfortunately, Wifi manager is not available for web app. You can write a native app for accessing wifi manager. If you want to keep your UI in web app, then write hybrid app. Hybrid app has a service in native and UI in web app. You can get/set all wifi info from service app and send those info to UI app through message port. Here is

Security Privilege Error - Samsung Gear SAP

僤鯓⒐⒋嵵緔 提交于 2020-01-23 12:24:11
问题 I'm following the Samsung SAP provider/consumer tutorial and I'm getting a security error when I run the connect() method: function connect() { console.log("trying to connect"); document.getElementById('label').innerHTML = 'trying to connect'; if (SASocket) { alert('Already connected!'); return false; } try { webapis.sa.requestSAAgent(onsuccess, onerror); } catch(err) { console.log("exception [" + err.name + "] msg[" + err.message + "]"); document.getElementById('errorlabel').innerHTML =

Security Privilege Error - Samsung Gear SAP

霸气de小男生 提交于 2020-01-23 12:24:07
问题 I'm following the Samsung SAP provider/consumer tutorial and I'm getting a security error when I run the connect() method: function connect() { console.log("trying to connect"); document.getElementById('label').innerHTML = 'trying to connect'; if (SASocket) { alert('Already connected!'); return false; } try { webapis.sa.requestSAAgent(onsuccess, onerror); } catch(err) { console.log("exception [" + err.name + "] msg[" + err.message + "]"); document.getElementById('errorlabel').innerHTML =

How to resolve Author signature issue?

女生的网名这么多〃 提交于 2020-01-22 16:54:05
问题 I have an app on tizen TV store and when I am trying to update version then I get the following error " Author signature of the App you would like to register is set incorrectly. Try check your author-signature.xml file please. " Please help me to solve this issue. 回答1: Let's check step by step.... The package you have uploaded was generated using 'Right click on project > Build a signed package? Make sure you are using the same keystore than in previous app. You can find the Certificate

tizen.filesystem.resolve() error - The content of an object does not include valid values

梦想的初衷 提交于 2020-01-06 23:46:01
问题 I am executing the following code in a Tizen web app I'm working on tizen.filesystem.resolve('.', function (dir) { dir.listFiles( function (files) { for (var i = 0; i < files.length; ++i) console.log('File : ' + files[i].name + '\nURL : ' + files[i].toURI() + '\n========'); } ) }, function (err) { console.log('Error : ' + err.message); window.__error = err }, 'r') ... and I am getting the following in the console null VM569:10 Error : The content of an object does not include valid values. My

How to read “resource” files added via Tizen IDE

半世苍凉 提交于 2020-01-06 14:47:00
问题 I'm giving my first steps on programming web apps for Tizen wearable devices . This is what I want to do : By using the Tizen IDE , add a file , e.g. x.txt , under a folder , e.g. data/text (i.e. relative path from project root is data/text/x.txt ) At run-time , I want to read the contents of x.txt file ... and do some extra processing with it . I thought I could just read wgt-package virtual root but my code (after fixing it) returns no file at that location . How could I do this ? BTW , I

SIGNATURE_INVALID when trying to run my project in Samsung Watch

旧巷老猫 提交于 2020-01-06 13:54:08
问题 I see there is a question here in SO, but the proposed answer (deleting .metadata folder) does not work for my case. Here is what I did: First, I had a certificate file (once I generated a certificate signing request file, and was given a certificate file for that). I used that .crt file, but since I had deleted other files in that folder, had to create another .csr file along with other required files (By generating another certificate signing request file). Then I requested for a device

Take Screenshot with Tizen SDK

◇◆丶佛笑我妖孽 提交于 2020-01-05 10:24:05
问题 Is it possible to take a screenshot with the Tizen SDK similarly to taking one with the Android SDK? The most I've found is using sdb on the command line, but I'd much prefer a graphical option. I've googled around for this, but there have been very few relevant results. 回答1: If you need something quck like click. you can use following one line command: cd ~; fn=$(date "+ screen-%H-%M-%S"); sdb shell xwd -root -out /tmp/"$fn".xwd; sdb pull /tmp/"$fn".xwd ~/; convert "$fn".xwd "$fn".png What