19

Which programming languages are available for developing native apps in tizen OS?

Eduard Florinescu
  • 16,747
  • 28
  • 113
  • 179
user3134167
  • 375
  • 1
  • 2
  • 10
  • from Wikipedia : Available programming languages(s) : HTML5, C, C++. Tizen provides application development tools based on the JavaScript libraries jQuery and jQuery Mobile. Since version 2.0, a native application framework is also available, based on Open Services Platform from the Bada platform. The software development kit (SDK) allows developers to use HTML5 and related web technologies to write applications that run on supported devices. – 0xBAADF00D Dec 25 '13 at 09:03
  • Did you look into the Tizen SDK? – Oswald Dec 25 '13 at 09:06
  • There is also port of Qt for Tizen (C++ framework) – Kamil Klimek Jan 27 '14 at 09:53

5 Answers5

12

C++ and HTML5. We have a guide on porting apps over from HTML5: http://tools.appbackr.com/porting-html5-apps-tizen-guide/

The important steps to add are

  1. hardware button functionality is required
  2. the screen resolution
Kamil Klimek
  • 12,884
  • 2
  • 43
  • 58
user2770036
  • 136
  • 1
  • 3
  • Thanks to the viewport the screen resolution is not so important - application may be scaled. Hardware button can be served via JavaScript. Please take a look at sample apps in the SDK. – Ender Nov 20 '14 at 21:47
8

Apart from C++ and HTML 5 it also supports C at system level.

prince
  • 1,129
  • 1
  • 15
  • 38
1

Native app development in Tizen can also be done using EFL libraries and c programming. You will have to write your graphics files or lets say screen using edc (Edje Data Collection a componant of EFL), and then you will map these edc files with your c programs for UI callbacks.

for edc reference http://docs.enlightenment.org/auto/edje/edcref.html

axnet
  • 5,146
  • 3
  • 25
  • 45
1

Native Application written in- 1. Application written in Core APIs UI Application - Applications with UI - Developed using EFL + Core APIs 2. Service Application - Applications without UI - Developed using Core APIs Both are written with C++.

Syeful Islam
  • 3,785
  • 1
  • 20
  • 19
1

Along with C/C++ , HTML/JS/CSS

.NET

Check this out...

https://developer.tizen.org/development/preview

Md. Armaan-Ul-Islam
  • 2,154
  • 2
  • 16
  • 20