Menu
  • HOME
  • TAGS

Infrared-controlled helicopter and Tizen

tizen,infrared,tizen-web-app,tizen-wearable-sdk

If someone will be interested then the protocol seems to be working like it works right like the same protocol in Android. The first number is frequency. The second one is a period in us (10^-6 seconds) for IR-blaster on. The following is for turning off etc. For example, "17000,2015,15,14,18,15"...

Can you use Android Studio for Samsung Gear 2?

samsung-mobile,tizen-wearable-sdk

I won't say it's not possible, but Android Studio/IntelliJ does not support the Tizen Wearable build process at this time. I don't know what the long-term plans are for the Tizen SDK team--if whether they will continue with Eclipse as it is or start providing support for A/S themselves. A...

Send Notification to Gear 2

tizen,tizen-web-app,tizen-wearable-sdk,samsung-galaxy-gear

So you can't access the Notification API from watch, it is private. You can just enable push notifications from gear 2, and send regular push notification to your phone. It will then be picked up by the gear 2. This is the best you can do.

Tizen IDE crashes all the time

tizen,tizen-wearable-sdk

It's a bit picky about the version of xulrunner after installation too #!/bin/bash # Proper header for a Bash script. XURL=http://ftp.mozilla.org/pub/mozilla.org/xulrunner/nightly/2012/03/2012-03-29-03-32-28-mozilla-1.9.2/xulrunner-1.9.2.29pre.en-US.linux-x86_64.tar.bz2 mkdir /opt/xulrunner cd /opt/xulrunner sudo sh -c "wget -O- $XURL | tar -xj" sudo rm /usr/bin/xulrunner sudo rm /usr/bin/xpcshell sudo ln -s /opt/xulrunner/xulrunner /usr/bin/xulrunner sudo ln -s /opt/xulrunner/xpcshell /usr/bin/xpcshell...

Installing integrated type apps on android device and wearable device

android,samsung-mobile,tizen,tizen-wearable-sdk,samsung-galaxy-gear

Do you have "gear manager" installed on your phone? If not then install it from "Galaxy App Store". Then run gear manager app, in that you would get option to connect with your gear. Steps to connect Open gear manager Click on three vertical dots present on top right hand...

java.lang.IllegalArgumentException: Cannot determine the graph element type because the document class is null.

java,android,tizen,tizen-wearable-sdk

There is probably a small spelling mistake or something somewhere because my guess is that there is no 'document' class since it probably doesn't exist in memory or you're referencing a class (Foo dingDong = new Foo(); foo.getStats()) that does not exist in memory.

Possible to cross-platform develop Watch/Wearable applications?

watchkit,apple-watch,sony-smartwatch,tizen-wearable-sdk,samsung-galaxy-gear

Cordova/PhoneGap apps don't work directly on the wearable devices/watches. Cordova/PhoneGap is basically a javascript API which can run on WebKit/WebView on all the mobile OS's. But the Android Watch and Apple Watch doesn't support WebKit and so the apps developed with Cordova don't work directly on Watch devices. But if...

Gear 2 (SM-380) doesn't support @media screen queries

css,tizen-wearable-sdk,tizen-web-app,gear-2

After going back and forth with this and not getting a solution to make @media working on Gear 2 (SM-R380), I found a way around: Created two stylesheets- one for 320x320 screen, another for 360x480 Added the following code to index.html just before </head> tag: <script type="text/javascript"> function setStyle(kb) {...

Author signing is missing while uploading Tizen Application

tizen,tizen-wearable-sdk,tizen-web-app,tizen-emulator

Do you use Trial version of Polaris or full paid? You have to use full paid to be able to put apps in the store. There is a warning about this on app download step.

packagemanager.install error: PRIVILEGE_LEVEL_VIOLATION

deployment,certificate,tizen,tizen-wearable-sdk,tizen-web-app

This could be a problem with your signed certificate from Samsung not being present on your Gear device. You must follow the certification instructions at Help > Help Contents > Getting Started with Tizen Wearable > Development Environment > Tizen SDK for Wearable > Certificates to get a signed certificate...

how to verify credentials on a tizen wgt project

certificate,tizen-web-app,tizen-wearable-sdk

If you're using the command line interface, you can pass in the argument to log the signing process as the following. cd .buildResult/ // you need to be where you have your build web-signing -l info -p your_profile_name:path_to_your_profile (you can replace "info" with the following: error, warning, info, debug, or...

Gear S device is not displayed in Tizen IDE

tizen,tizen-wearable-sdk,samsung-galaxy-gear

Did you go through the parts about creating a developer certificate and getting a device profile? This is the one thing that trips up developers because it's not immediately obvious from the tizen site. Turning on USB debugging, like you would do on Android, is not enough as the Tizen...

native notification Samsung Gear 2 Watch

samsung-mobile,tizen,tizen-web-app,tizen-wearable-sdk,samsung-galaxy-gear

I figured it out. The answer is there is NO SUCH THING as native notifications for the Samsung Gear 2. That library is a private library owned by samsung only and only special people can have access to that. For the lay men the closest we can get is to...

Tizen heart rate monitor rRInterval

tizen,tizen-wearable-sdk

If you are talking about HumanActivityHRMData I'm assuming you are trying the Tizen 2.3 version. I have tested HRM on 2.2.1.x (which is running Gear S) and the rRInterval (MotionHRMInfo) data has appeared on every beat, so I think it's the most recent interval. This should be the same on...

my phone galaxy s4 is not discovered by Tizen wearable IDE

samsung-mobile,tizen,tizen-web-app,tizen-wearable-sdk,samsung-galaxy-gear

I fixed the issue. I enabled development mode in the watch and connected it to my PC. Samsung documentation was unclear and didn't help me.

SIGNATURE_INVALID when trying to run my project in Samsung Watch

tizen,tizen-wearable-sdk

I have also had some byzantine errors with the wearable sdk where many straightforward processes like this fail. I think the SIGNATURE_INVALID error normally suggests that you may not have added your gear device DUID or permitted to install application (which you have done). Are you testing with a real...

Security Privilege Error - Samsung Gear SAP

android,tizen,tizen-wearable-sdk,samsung-galaxy-gear

You only need to generate a certificate if you want to test your gear consumer widget apps on a real device. You don't need it when running on the emulator You can find more information about certificates in the Help section of the IDE (Help Contents > Getting Started with...

Creating and writing into a file in Gear S

tizen,tizen-wearable-sdk

You need to add these privleges in your app's config.xml file. <tizen:privilege name="http://tizen.org/privilege/filesystem.write"/> <tizen:privilege name="http://tizen.org/privilege/filesystem.read"/> Then only you'll be able to create directory/file. EDIT I think there is a typo in your code. documentsDir = result; var newDir = docuemntsDir.createDirectory(... It should be, documentsDir = result; var newDir = documentsDir.createDirectory(......

samsung gear app communication

android,communication,tizen,tizen-wearable-sdk

Standard Android notifications are passed to the Gear using the method you describe. There is a deeper mechanism that you can use called Rich Notifications. Part of the solution runs on Android and you can write JavaScript web apps to respond to the messages on Tizen. JSON is not necessary...

Gear 2 - Privileges SecurityError when using IRLED

tizen,infrared,tizen-web-app,tizen-wearable-sdk,samsung-galaxy-gear

you should to get a Certificate From samsung developer , and then store the certificate-registration.xml in your /home/developer on your device . in this process you need the DUID and you can get it by your device properties ! for more information about CSR (Certificate Signing Request) follow this link...