tizen

Tizen Mobile 2.3 WebViewer Example

你说的曾经没有我的故事 提交于 2019-12-11 10:53:44
问题 Is there any example projects for tizen 2.3 for implementing webview in your app. This is not in the samples with official sdk. 回答1: Here is an example that you can refer #include <stdio.h> #include <stdlib.h> #include <EWebKit2.h> #include <Eina.h> #include <Ecore.h> #include <Ecore_Evas.h> #define W_WIDTH (480) #define W_HEIGHT (800) #define W_TEXTAREA_X (0) #define W_TEXTAREA_Y (416) #define W_TEXTAREA_WIDTH (W_WIDTH) #define W_TEXTAREA_HEIGHT (64) #define W_MAP_ORIGINE_X (0) #define W_MAP

OS-SIGNATURE_INVALID [22] failed in Tizen wearable sdk

拈花ヽ惹草 提交于 2019-12-11 09:57:30
问题 I am trying to run my sample app in Samsung galaxy gear s but I couldn't It's giving me error " SIGNATURE_INVALID [22] failed " in Tizen. I have followed all steps. 回答1: That usually means the certificate that you created to start the process doesn't match the device profile that was downloaded. There are 3 parts to the Tizen Wearable signing process Your certificate that you create using the Tizen IDE. This file is in ~/tizen-wearable-sdk-data/keystore/author.csr. Your certificate that has

Search for a string from a text file in java script

走远了吗. 提交于 2019-12-11 05:25:29
问题 I am creating a Dictionary app for mobile using Java Script. I have stored Dictionary source in a separate file. My doubt is how to access that file and search for particular string using Java Script. function dic() { var word = document.getElementById("wo").value; var dictionary = new Array("Java","Python","Swift","HTML","PHP"); var flag = 0; for(var i = 0; i < dictionary.length; i++) { if(dictionary[i] == word) { document.getElementById("result").innerHTML = "Element Found"; flag = 1; break

Bad exit status from /var/tmp/rpm-tmp.b1DgAt (%build)

主宰稳场 提交于 2019-12-10 21:07:34
问题 I am trying to compile Tizen source code. The compilation tools uses the rpm build environment. While compiling specific package I'm getting an rpm build issue "Bad exit status from /var/tmp/rpm-tmp.b1DgAt (%build)" Here is my build log Building CXX object CMakeFiles/osp-messaging.dir/src/FMsg_PushUrlRequestListener.cpp.o [ 8s] [ 69%] Building CXX object CMakeFiles/osp-messaging.dir src/FMsg_WapPushManagerImpl.cpp.o [ 8s] [ 71%] Building CXX object CMakeFiles/osp-messaging.dir/src/FMsg

Tizen WEB applications are not working in version 2.2

最后都变了- 提交于 2019-12-10 20:23:30
问题 I'm new to Tizen and started development by setting the SDK version as 2.2 in a 64-bit Windows 7 machine. I created a new WEB app and while trying to run it (on emulator and a real device) nothing is happening after the installation. I tried several times to launch the application, but its not launching (in emulator, a black screen is appearing). There is no problems with the NATIVE applications. Sample Native applications are running without any issue in both emulator and device. The device

Sign application package with cerificate profile in tizen studio

你。 提交于 2019-12-10 19:50:04
问题 How to sign application package with certificate profile in Tizen studio?This doc only shows how to create Certificate profile but not how to sign the app package. I want to run the BasicUI app on Tizen emulator and sign the application package is must to run the app. 回答1: You can sign your application with your own author signing key and a testing distributor signing key in the Tizen Studio. At first create your own Certificate Profile with author and distributor cert. then click right on

“Installation or uninstallation is not working temporarily” error when trying to launch Tizen watch application from Tizen SDK

混江龙づ霸主 提交于 2019-12-10 17:48:10
问题 When trying to launch the native watch application from Tizen IDE, I see the strange message "Certain application categories, such as "Watch Application", cannot be launched by "Run As". Indeed, I try to use Run As from the project local menu to launch my app. But how else I am supposed to launch my application on the emulator? The emulator device (watch) is up and running, visible on desktop as a separate widget. It is selected. The signing configuration is set up. On the console output I

Error 81 when launching web app on Gear S2 device

天大地大妈咪最大 提交于 2019-12-10 17:29:02
问题 I am using Tizen SDK (2.4.0_Rev5) to launch the demo app HelloTizen (wearable-2.3) on my Gear S2 but it fails, with the following error: Unknown Error [81] Unknown Error [81] When I try to install it with sdb install HelloTizen.wgt I get the following output: pushed HelloTizen.wgt 100% 36KB 0KB/s 1 file(s) pushed. 0 file(s) skipped. /home/user/tizen/HelloTizen/HelloTizen.wgt 114KB/s (37179 bytes in 0.318s) path is /opt/usr/apps/tmp/HelloTizen.wgt __return_cb req_id[138540002] pkg_type[wgt]

Step SDB has failed error on Tizen App Launch

纵饮孤独 提交于 2019-12-10 14:24:40
问题 I am trying my hand at Tizen TV App Development and every time i try to launch even the basic template app, I get an error saying: "Step SDB shell handle failed" And when I click details: step SDB shell handle failed Failed to step SDB shell handle 'ls /usr/bin/xwalk-launcher > /tmp/null.deployer 2>&1; echo $? ' command` operation (Return Code:31) sdb command rejected exception It would be such a huge help if someone here could help out. I checked everywhere. Samsung Developer Forums, the

Tizen support for C++ 11 standard

依然范特西╮ 提交于 2019-12-08 10:53:48
问题 I am beginning Tizen application developer. I would like to know what is current support for C++11 features on Tizen? When will the C++11 standard be fully supported? Maybe some platform developers could shed a light on that topic. 回答1: The Tizen 2.3 SDK comes with clang++ version 3.4 and gcc 4.8. gcc 4.8 is known to not adhere to the C++11 and C++14 standards, clang++ 3.4 is really close to complete for C++11. However, there's more to C++11 compliance than just the compiler. You also need to