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

Elm_entry: centering text?

I know I can use formats in text to center it within an elm_entry. Also when I'm setting the guide text, it can be aligned center by some format strings: input your text However, when user needs to fill the entry,…
Daniel
  • 2,318
  • 2
  • 22
  • 53
0
votes
0 answers

How to send USSD code from native application?

Almost all details are in the title. I wish to send USSD codes from a native Tizen 5.5 application. However all I found around telephony is to get the states. How am I supposed to send USSD codes on Tizen Wearable from my app?
Daniel
  • 2,318
  • 2
  • 22
  • 53
0
votes
1 answer

How-to get network events in a service app?

On Tizen (wearable), I have to create a service application which 99% inactive. However it must get a callback when network of the device changes (i.e. from no connection to LTE). How can I get this kind of events?
Daniel
  • 2,318
  • 2
  • 22
  • 53
0
votes
2 answers

Event when dismissing the entry without modifications?

I'm having an entry: auto myEntry = elm_entry_add(..); Its focused event works great for detecting when it's getting actually edited: evas_object_smart_callback_add(myEntry, "focused", onOpen, NULL); This calls my onOpen function when the entry is…
Daniel
  • 2,318
  • 2
  • 22
  • 53
0
votes
1 answer

How can I create multiple buttons in a genlist?

I wish to reach this goal with Tizen5.5 (or 4.0): A nice circular genlist, with 2 buttons on top, then a groupindex then items. More specifically: Padding Icons Groupindex Items... Padding I'm fully aware of 1,3,4 and 5, but can't find a way to…
Daniel
  • 2,318
  • 2
  • 22
  • 53
0
votes
0 answers

can i make a better ui for smb shares in my samsung tv

this is my first question so I may have not put it right, the thing is ... I have my pc and my samsung tv that is using tizen on the same network and I share media like movies and series to my tv through media streaming service my question here is…
0
votes
1 answer

Vague error when trying to bundle hybrid app for Tizen TV

My end goal is to create a hybrid app for Tizen TV so that I can run a scan on the local network for DLNA servers (With the Native part) and playback the content from said DLNA server(s) on the Web/UI part. (If this isn't going to be possible please…
0
votes
2 answers

How can I change "selected" field on datetime?

I'm using a date picker on Tizen (Wearable): Evas_Object* datetime = elm_datetime_add(layout); Evas_Object* circle_datetime = eext_circle_object_datetime_add(datetime, circlesurface); elm_object_style_set(datetime, "datepicker/circle"); This…
Daniel
  • 2,318
  • 2
  • 22
  • 53
0
votes
0 answers

Tizen install failed: Security Error [-22]

When installing an .NET application that was build with the tizen cli using: tizen build-cs -s Samsung-Certificate I get the following error as seen in the attachment: Security Error [-22]. Is there any fix for this?
0
votes
1 answer

OAuth2: works only via Wifi or cellular, not over Bluetooth

I managed to run Tizen's own OAuth2 manager, and I can request access_tokens perfectly on emulator (Tizen5.5): oauth2_manager_request_access_token(mgr, request, cb, NULL); Code works perfectly on the physical wearable device too, but it has a…
Daniel
  • 2,318
  • 2
  • 22
  • 53
0
votes
1 answer

How can I align text to baseline in EDC?

I have two different font-sized texts in EDC, and I want them to be baseline-aligned: This is the source generating this: text { "elm.text"; scale: 1; desc { "default"; color: 255 0 0 255; text { text: "0.2"; …
Daniel
  • 2,318
  • 2
  • 22
  • 53
0
votes
2 answers

Forcing center aligned text to be left-aligned if longer

Having a text part, which is basically center aligned. text { "elm.text"; scale: 1; clip_to: "elm.clipper"; desc { "default"; visible: 1; rel1.to: "elm.clipper"; …
Daniel
  • 2,318
  • 2
  • 22
  • 53
0
votes
2 answers

(Tizen studio, wearable, web app) How to detect long press on back-hardware button?

I'm developing a web app for Samsung wearable device and I would like to detect when user makes a long press on a back-hardware button. The only information that I have found so far is this: document.addEventListener('tizenhwkey', function(e)…
0
votes
1 answer

SAP: interrupt/parallelization of sending of large data

I'm using SAP: Watch as consumer, Phone as provider. Usually communication in between them is perfect, but I have a bottleneck now: If I send a large data from phone to watch (with SASocket.secureSend), I can't interrupt it. Consider this: I'm…
Daniel
  • 2,318
  • 2
  • 22
  • 53
0
votes
0 answers

How can I add my own application into system notifications?

On Tizen Wearable, when I copy images from phone to watch, after the operation is finished there is a notification which applies an Open app button: (How) can I achieve the same if all below are true: - I do have my own application on the Android…
Daniel
  • 2,318
  • 2
  • 22
  • 53