tizen

Upload a video using Facebook API for Tizen?

老子叫甜甜 提交于 2019-12-24 09:27:37
问题 I wondering how to upload a video using Facebook API with Tizen application which is developed in HTML5. Can any one say how to integrate..? 回答1: The code inside the widget should be like any other JavaScript implementation of a video upload to Facebook for an example see: Facebook video upload via Graph API Javascript SDK The only caveat should be that any resource that it is accessed outside should be declared(see Accessing External Network Resources): You cannot access external network

Author signing is missing while uploading Tizen Application

本秂侑毒 提交于 2019-12-24 03:34:13
问题 I used Polaris app generator for converting my android application to Tizen TPK. After conversion, while uploading the tpk file in tizen store, i am getting this "Author signing is missing" Any solution ??? Note : The application was converted using trial version of Polaris 回答1: 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. 来源: https://stackoverflow.com/questions/27177262

Transferring the package… > Fail Error occurred at the below step. `Transferring the package…` (Return Code:2)unknown error

我的梦境 提交于 2019-12-23 19:08:55
问题 When i deploy my Tizen project on emulator then it's giving a error "Transferring the package... > Fail Error occurred at the below step. Transferring the package... (Return Code:2)unknown error" . How can i fix it, and also on developer mode in my emulator. 回答1: The answer to this issue was: Make sure both author and device certificates were setup properly. From the 'Connection Explorer' in the Tizen IDE, right-click on the device, then select 'Permit to install applications'. 来源: https:/

Unable to run a hello world app in Tizen

☆樱花仙子☆ 提交于 2019-12-23 05:19:48
问题 I'm unable to run a simple native application "hello world" in tizen 2.4 rev2 due to an error shown in the screenshot. I'm trying to run it on a real device which is setup for development -- Developer Options are visible and Debug via USD is activated. How to fix it? UPDATE1: Right click on the id of a device -> Permit Install applications and an error: How can I register it? Is it that all only to run a simple hello world application? UPDATE2: UPDATE3: I've generated a certificate, but there

Tizen IDE crashes all the time

北战南征 提交于 2019-12-23 01:37:30
问题 Tizen IDE crashes all the time when I want to start example project. I'm running Tizen IDE 1.0.0b2 under Ubuntu 12.04. Currently it gives me following ouput. It seems that the problem is here: err:wineboot:ProcessRunKeys Error running cmd L"C:\windows\system32\winemenubuilder.exe -a -r" (2) Though, I've no idea why IDE try to access windows libraries. Output form IDE: JVM terminated. Exit code=1 /usr/bin/java -Dfile.encoding=UTF-8 -Dosgi.requiredJavaVersion=1.6 -XX:+AggressiveOpts -XX

Memory mapped equivalent for FirefoxOS

痴心易碎 提交于 2019-12-22 04:15:08
问题 How would you emulate a memory mapped file in FirefoxOS, Tizen or any other mobile pure-JS solution? The use case is for a mobile browser and you need lots of data which does not fit in the RAM or you don't want to waste RAM for it yet and prefer to lazy load it. The only thing I found is IndexedDB or what can I do about it? Any better tricks or APIs? Hmmh it looks like Web SQL Database could be also a solution on Android, Tizen or iOS. But Firefox does not support it (?) Update : I'm asking

Signature Error in Gear S3 after OS upgrade from Tizen 2.3.2.3 to Tizen 3.0.0.1

落花浮王杯 提交于 2019-12-21 12:11:28
问题 My Gear S3 was running on Tizen 2.3.2.3. Yesterday, I updated it to Tizen 3.0.0.1. Now, when I am trying to install app from Tizen Studio 1.2, it shows following error "The application installation on the device has failed due to a signature error! (error code: -12)" Previously it worked with a certificate I generated with my device's DUID. But, its not working now. I have created new Certificates(both public and partner level), but still its showing same error for both certificate profiles.

How to integrate Samsung Gear Steps in android Application?

♀尐吖头ヾ 提交于 2019-12-17 07:41:41
问题 I want to integrate Samsung Gear device for steps in my application, also jawbone Steps and misfit Steps. I've looked at several things, like the Samsung Gear Site, but found nothing that works for me. 回答1: For connection and data transfer between mobile android device and Samsung Gear device , Accessory Protocol is defined. So, the option available here is using Accessory SDK for Android mobile and Tizen wearable. Tizen provides HumanActivityMonitor for 3rd party developers to retrieve

samsung gear app communication

喜夏-厌秋 提交于 2019-12-14 03:24:19
问题 I am planning to develop an app for the gear (s) and a samsung galaxy mobile (note 3). I want the user to be able to choose from a list (same like in the gear app of samsung) of all installed apps. The notifications of the selected apps shall get sent to the gear and the notifications of the apps that are not selected in the list shall get sent to another bluetooth device. Since I know that the communication of the samsung gear is very weird, I wanted to ask if it is possible for my app to

On click of hardware button of mobile then it should exit from TIZEN application

匆匆过客 提交于 2019-12-14 02:53:10
问题 I have developed tizen application and i want to use hardware button,once user click on hardware button it should exit from application.I am developing TIZEN application.The hardware back button of my application is not working. 回答1: There are two type of application is exist in TIZEN (2.3) If you make web application, document.addEventListener('tizenhwkey', function(e) { if(e.keyName == "back") { try { tizen.application.getCurrentApplication().exit(); } catch (error) { console.error(