user3134167
user3134167

Reputation: 385

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

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

Upvotes: 20

Views: 16998

Answers (5)

Md. Armaan-Ul-Islam
Md. Armaan-Ul-Islam

Reputation: 2184

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

.NET

Check this out...

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

Upvotes: 1

axnet
axnet

Reputation: 5790

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

Upvotes: 1

Syeful Islam
Syeful Islam

Reputation: 3855

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++.

Upvotes: 1

prince
prince

Reputation: 1149

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

Upvotes: 8

user2770036
user2770036

Reputation: 136

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

Upvotes: 12

Related Questions