Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Approach to developing an application across many Nokia devices

First off, greetings everyone and thank you for your interest in my question.

I'm currently working at a mobile startup. Our product is a communication app for Android, iOS and BlackBerry devices and we're looking to expand onto some Nokia platforms.

I don't know a lot about Symbian details as I've never actually programmed in the platform before but this is all of the information I was able to gather.

The platforms to support are Symbian S60, Symbian^3 / Symbian "Anna", Maemo + Meego.

In order to accomplish this, there's several tools at our disposal but we're not sure which ones to use.

Nokia Qt appears to be unsupported on Symbian S40 devices (we seem to be stuck with J2ME) and Symbian S60 devices pre-3rd Edition Feature Pack 1

On Symbian's C++ we can't rely on C++'s STL. This means that we can either create two versions of the same software or create our own STL that's compatible with Symbian (I'd like to avoid that).

Approach

Among the team the consensus seems to be to split this into two logical chunks:

  • Core business logic + libraries in C++
  • Device specific UI branches using Qt or native UI tools

With all this information in mind, I ask:

  1. What is the general approach for this problem? Is there any considerable flaws with the one mentioned, namely incompatibility or inconsistencies with Qt on older platforms?

  2. What pitfalls should we avoid to ensure compatibility and performance of the app across all Nokia devices listed?

  3. Is there a way to get around Symbian's C++ limitation of the STL? Can we bundle the Qt sources somehow?

Suggestions and other approaches are welcome. Thank you for all your feedback.

like image 464
Andre Avatar asked Jun 15 '11 03:06

Andre


1 Answers

You should consider that Symbian is a dying platform, so I would not invest huge development effort into a Symbian application. And even more so I would not use Symbian C++. Qt is a promising platform but Nokia/Microsoft announced that there will be no Qt port for Windows phone (which might be interesting for you). Maybe you should support Nokia devices only by Java ME because Symbian has big market share but the most devices are not smartphones where you can run a Qt app.

Your approach sounds very idealized, but I am not sure if you can use the C++ libraries you mentioned for the business logic from Java ME. Is that possible?

like image 125
Kai Avatar answered Oct 24 '22 15:10

Kai