Is there already a ubiquitous/general framework to target multiple smartphone OS, i.e. like a QT for Android/iPhone/Symbian? Or would be technically too hard to write such a framework?

link|improve this question

feedback

2 Answers

up vote 0 down vote accepted

Phonegap if it fits your needs. Packages a web app with limited access to device services as an installable.

link|improve this answer
this lead me into the right direction, i also found appcelerator.com and rhomobile.com I'm going to analyze the frameworks and see which one i'll take. – Fabian May 19 '10 at 11:04
feedback

Technically it would be pretty much impossible (at least very difficult).

The first problem is that the mentioned platforms don't share a common language, so you wouldn't be able to directly share source code. Second is that your abstraction layer would have to be so big that it would probably kill performance.

The closest thing that I'm aware of is something like OpenGL es (you can almost copy & paste OpenGL code across platforms).

A more realistic option is targeting the web layer with an HTML5 application.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.