Reputation: 385
Which programming languages are available for developing native apps in tizen OS?
Upvotes: 20
Views: 16998
Reputation: 2184
Along with C/C++ , HTML/JS/CSS
.NET
Check this out...
https://developer.tizen.org/development/preview
Upvotes: 1
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
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
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
Upvotes: 12