Questions tagged [tizen-native-app]

Tizen is an open and flexible operating system built from the ground up to address the needs of all stakeholders of the mobile and connected device ecosystem, including device manufacturers, mobile operators, application developers and independent software vendors (ISVs).

Tizen is developed by a community of developers, under open source governance, and is open to all members who wish to participate.

The Tizen operating system comes in multiple profiles to serve different industry requirements. The current Tizen profiles are Tizen IVI (in-vehicle infotainment), Tizen Mobile, Tizen TV, and Tizen Wearable. In addition to that, as of Tizen 3.0, all profiles are built on top of a common, shared infrastructure called Tizen Common.

With Tizen, a device manufacturer can begin with one of these profiles and modify it to serve their own needs, or use the Tizen Common base to develop a new profile to meet the memory, processing and power requirements of any device and quickly bring it to market.

Mobile operators can work with device partners to customize the operating system and user experience to meet the needs of specific customer segments or demographics.

For application developers and ISVs, Tizen offers the power of native application development with the flexibility of unparalleled HTML5 support. Tizen also offers the potential for application developers to extend their reach to new “smart devices” running Tizen, including wearables, consumer electronics (TVs, gaming consoles, DVRs, etc.), cars and appliances.

The Tizen project resides within the Linux Foundation and is governed by a Technical Steering Group. The Technical Steering Group is the primary decision-making body for the open source project, with a focus on platform development and delivery, along with the formation of working groups to support device verticals.

The Tizen Association has been formed to guide the industry role of Tizen, including gathering of requirements, identification and facilitation of service models, and overall industry marketing and education.


Learn More

To learn more about Tizen, we invite you to read these whitepapers, and then get involved!


Source: https://www.tizen.org/about

Tizen Developers Page: https://developer.tizen.org/

280 questions
0
votes
1 answer

How to uninstall Tizen wearable service app?

I have a UI app and a service app as this tutorial specifies, a multi UI launcher and a service app. But when I relaunch the app from the IDE it says error of a app already installed with the current service app identifier. But I do not see any way…
Rifat
  • 1,700
  • 3
  • 20
  • 51
0
votes
1 answer

How to get IMEI number on Tizen native wearable?

I have privileges and permission for telephony services. I am trying to retrieve IMEI and cell_id and other numbers. I am testing on emulator. Code: char *imei; /* In the case of a single SIM, you get only one handle */ ret =…
0
votes
2 answers

How to add rounded background or ellipsical shape on Tizen native wearable?

I want to achieve a shape that is like rectangular button. But the close I got is adding a rectangle as the background. This is rectangular and I could not find elm bubble on wearable. Code: Evas_Object *bg1 =…
Rifat
  • 1,700
  • 3
  • 20
  • 51
0
votes
1 answer

Move entry input field with soft keyboard on Tizen native wearable

I have a simple text entry field. When I click on it soft keyboard appears and it occupies the most of the screen, blocking the entry field. So I can not see what input I'm typing. What can I do to make it visible along with soft keyboard or at…
Rifat
  • 1,700
  • 3
  • 20
  • 51
0
votes
1 answer

How to get GPS data? emulator always returns runtime GPS disabled on Tizen native

I am trying to access GPS data on Tizen native app. I have turned on location asked permissions, privileges, and granted permission on emulator. But when I run code to access location information, it gets zero values. For runtime location info it…
Rifat
  • 1,700
  • 3
  • 20
  • 51
0
votes
1 answer

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

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…
Rifat
  • 1,700
  • 3
  • 20
  • 51
0
votes
1 answer

Native Tizen - How to remove image?

Adding new window and popping it works based on Tizen developer docs tutorial. But when I add a image on the second window, after popping it, the image does not vanish. Here's the code on second window with image added: static void…
Rifat
  • 1,700
  • 3
  • 20
  • 51
0
votes
1 answer

Logging into a specific file in Tizen?

Before asking this question I searched a lot about Logging (the terminal Debug Log) into a file for Tizen Application. I figured out some other ways to implement using several alternatives a bit complex pathway for this problem. But I want…
ssavi
  • 112
  • 1
  • 12
0
votes
2 answers

Tizen Wearable Native Application: How do we dump a SQLite database?

I'm implementing a Tizen Wearable Hybrid Application (Web UI + Native Service). Native Service uses the SQLite Database for record maintenance. I need to export a SQLite dump file of the database in csv format to share that with the Web UI.…
Itban Saeed
  • 1,660
  • 5
  • 25
  • 38
0
votes
1 answer

How to set customize date format in tizen native app

I want to set minute and second in timer app. But when i use FORMAT "%T" it shows hour and minute. My code where i set the time and it shows by default Hr & Min elm_datetime_format_set(datetime, FORMAT); elm_object_style_set(datetime,…
mhhabib
  • 2,975
  • 1
  • 15
  • 29
0
votes
3 answers

How to send a file from Tizen wearable to Android phone over BT

I have a simple audio recorder application, and when I stop the recording, I wish to immediately send the recorded file over bluetooth to my phone. However I am missing something, and I don't know what. It's based on sample native ui application…
Helban
  • 81
  • 12
0
votes
1 answer

Tizen Native Service: Unable to Get Location

I am trying to get location on my Gear S3 Frontier watch. After enabling the location service I'm unable to get any response. Some Relevant Code: location_manager_h location_manager; …
Itban Saeed
  • 1,660
  • 5
  • 25
  • 38
0
votes
1 answer

Tizen web app on wearable device to operate on desktop application

I am wondering if Tizen platform supports to develop a web app for wearable devices(Samsung galaxy) that can operate on desktop application(example selection/navigation of menus in desktop application through smartwatch features like…
0
votes
0 answers

Some video required a lot of time to play with AVPlay

I tested AVplay, NaCL, videoJS on tizen samsung emulator and samsung device but i found some videos which requires a lot of time to start to play. This is a video sample with the problem. Using Chrome browser, any library works but the issue is when…
0
votes
3 answers

Tizen Service Application not running normally in background without being connected to Tizen Studio

I am trying to build a native tizen app which will detect activity and collect sensor data periodically to upload to a remote http server. For this I have developed two things. 1. A Native UI Application to Start/Stop the 2. A Service…