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
1
vote
1 answer

How to develop Native application in visual studio for tizen platform

I try to develop the native application in visual studio using this reference link this is reference link. I follow same step which is in the link. when I try to build the project I am getting this below errors. and the output log is Build…
front_dev_j
  • 139
  • 1
  • 12
1
vote
0 answers

Tizen Native Service not asking for Application Launch Privilege

I am working on a Hybrid App (Web UI with Native Service) of API version 5.5 for my Samsung Galaxy Active Watch. I want to launch a Native Service from another Native Service. Problem: My Service App has the privilege of…
Itban Saeed
  • 1,660
  • 5
  • 25
  • 38
1
vote
1 answer

Howto add system-default selection designs to (gen)lists?

I have a nice genlist, and I want to add checkboxes (/toggles) to all items. I checked these…
Daniel
  • 2,318
  • 2
  • 22
  • 53
1
vote
0 answers

Accessing REST API securely from native app before login as cutomer

I have a native app [android and iOS]. In this, the customer will be able to onboard to the application himself. As part of the onboarding the native app has to consume some backend REST API. How do I securely access the API from the native app?.…
1
vote
1 answer

/usr/include/stdlib.h:133:35: error: missing binary operator before token "("

I have a preprocess error for compiling gtest project with tizen headers on gitlab ci-runners (Debian GNU/Linux 10 (buster)). gcc (Debian 8.3.0-6) 8.3.0 But on local machine Ubuntu 16.04 compiles this successfully. gcc (Ubuntu…
geusfexx
  • 31
  • 6
1
vote
1 answer

How to draw a *curved* line?

Question is simple as title says. Tizen's docs are truly unreliable regarding this topic (among others). For example as they states here: Drawing SVG Path. You can construct a path by using api in…
Daniel
  • 2,318
  • 2
  • 22
  • 53
1
vote
1 answer

Progressbar is not animated on real device

I've created an indeterminated progressbar for Tizen 4.0 using native C language: Evas_Object* progressbar = elm_progressbar_add(parent); evas_object_size_hint_align_set(progressbar, EVAS_HINT_FILL,…
Daniel
  • 2,318
  • 2
  • 22
  • 53
1
vote
1 answer

Edje: how to define a "fixed" size group?

I have this layout in Edje: group { name: "mylayout"; min: 200 200; parts { rect { "elm.bg"; scale: 0; desc { "default"; visible: 1; fixed: 1 1; color: 255 0 0 255; min: 200…
Daniel
  • 2,318
  • 2
  • 22
  • 53
1
vote
1 answer

Tizen Native UI animation

I'm creating a native Tizen application for wearables. Started using the UI builder which can generate code for navigating between different application views: Tizen however is not that good in documentation. There is a mention in the website about…
Daniel
  • 2,318
  • 2
  • 22
  • 53
1
vote
1 answer

How to use data_control_bulk_data_h in Tizen data control?

I want to learn data_control_bulk_ ... methods usage but except doc I see nothing to learn from about it. Is it interchangeable with data_control_h? I want an example.
Rifat
  • 1,700
  • 3
  • 20
  • 51
1
vote
1 answer

Which version of Tizen Wearable should I choose for the development of watchfaces?

I just started with the development of a watchface for Tizen/Samsung watches (native application). Should I select the latest Wearable version 5.5 in Tizen Studio expecting that it is backwards compatible with older devices? Or should I select an…
go3d
  • 443
  • 3
  • 11
1
vote
1 answer

How to get entry text without elm attributes on Tizen?

I am setting text on entry box on Tizen watch but because of it being too big to fit on screen I'm using smaller font size with attribute. But after editing when I get the text back it returns me with those attributes as well. I have…
Rifat
  • 1,700
  • 3
  • 20
  • 51
1
vote
1 answer

Samsung Galaxy SM-R800 Gear S4 location permission error (TIZEN_ERROR_PERMISSION_DENIED)

I'm trying to get the location of Samsung Galaxy SM-R800 Gear S4. Following the official documentation of Tizen, I'm unable to get the location and it says TIZEN_ERROR_PERMISSION_DENIED. I allowed all the required permissions from the watch.
QueEffCh
  • 25
  • 6
1
vote
1 answer

Tizen Native Service is not getting Sensor Privileges

I'm working on a Tizen Hybrid App (Web UI + Native Service) for Gear S3 Frontier watch. I'm getting the sensor privileges in the Web UI and the launched Native Service somehow gets the same privileges. But since I've reset my watch, I'm not getting…
Itban Saeed
  • 1,660
  • 5
  • 25
  • 38
1
vote
3 answers

Audio recorder, cannot find saved file on emulator and internal error (-38)

I am trying to write a simple application to record audio on my galaxy watch using native app development in C. So far I got to the stage when I start the app and have a button that starts and stops the recording. For some reason I cannot get the…