Is C ++ enough for Nokia development?

I really need Nokia development information. Can I program Nokia devices (Symbian) only in C ++, or do I also need Qt? (I have a Nokia Qt SDK). I'm not sure about GUI programming, so I ask for help :)

It would also be helpful if you could tell me how to do something like cmd style on Nokia (Symbian) <- (this is an optional question)

+4
source share
2 answers

There are probably several ways to accomplish what you are trying to write (as Bala.C pointed out, you can use java), but the latest versions of Symbian OS have really encouraged people to write with Qt and specifically using QML. This is likely to be the fastest and smoothest interface to the device, because they spent a lot of time optimizing it for the platform. In addition, it will make your application more portable for its N9 and other Qt-based phones (not yet for Windows Lumia).

I am sure that there is a possibility that the API will be directly tied to the lower-level architecture for drawing on the screen, but I suspect that it is both not documented (unlike Qt), and can be changed from release to release since they they don’t expect developers to use it as much as possible.

+4
source

Well, I don’t think that only C ++ will do it, but with Java it will be great.

Please follow the link below to help you equip yourself for Nokia Symbian Development.

http://www.developer.nokia.com/Develop/Web/Web_runtime.xhtml

Good luck.

+3
source

Source: https://habr.com/ru/post/1393769/


All Articles