English 中文(简体)
Symbian Development
原标题:
  • 时间:2009-11-23 07:05:40
  •  标签:
  • c++
  • symbian

I am currently doing iphone development. I wish to do development in the Symbian platform too. Rather than Java i am familiar with CPP. Can you please help me by giving me some advice to get start in this development environment.? What all are the softwares i need to get installed in my system.? Expecting a positive reply.

Thanks and regards,

Shibin

最佳回答

Things you will need:

  • IDE. For Symbian C++ development there s the free, Eclipse-based Carbide.c++.

  • SDK. For example, the S60 Platform SDK enables you to write applications for S60-based devices.

There s a lot of getting started documentation on Forum Nokia.

问题回答

The Qt framework is a free cross platform C++ based environment, with Symbian support just around the corner (looks like its available in beta). It supports desktop OSes (Windows/Mac) as well as device (Embedded Linux, Windows CE, etc.). However as of this writing it does not support iPhone, RIM or Android.

Shameless plug: http://www.mosync.com

Even though the biggest benefit of MoSync is in the targeting of multiple platforms, it is a very nice C/C++ development environment for Symbian only! For a regular C/C++ programmer, everything should feel considerably less alien than using Symbian C++.

Java/J2ME has much better tools and documentation, simpler libraries to use, and a bigger community. So unless you REALLY need to use C++ because of performance or specific API s you need, I suggest you use J2ME instead. I will probably be quicker to learn J2ME from scratch than to learn how to use the Symbian C++ libraries.

As stated by others, Qt might also be a viable option, but I haven t worked with it yet.

The power and simplicity of Qt is further expanding its presence in the mobile world. The latest version of Qt will provide core support for Symbian S60 development and a technology preview of support for Maemo 5.

                                                  ---quoted from forum.nokia.com




相关问题
Undefined reference

I m getting this linker error. I know a way around it, but it s bugging me because another part of the project s linking fine and it s designed almost identically. First, I have namespace LCD. Then I ...

C++ Equivalent of Tidy

Is there an equivalent to tidy for HTML code for C++? I have searched on the internet, but I find nothing but C++ wrappers for tidy, etc... I think the keyword tidy is what has me hung up. I am ...

Template Classes in C++ ... a required skill set?

I m new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly?

Print possible strings created from a Number

Given a 10 digit Telephone Number, we have to print all possible strings created from that. The mapping of the numbers is the one as exactly on a phone s keypad. i.e. for 1,0-> No Letter for 2->...

typedef ing STL wstring

Why is it when i do the following i get errors when relating to with wchar_t? namespace Foo { typedef std::wstring String; } Now i declare all my strings as Foo::String through out the program, ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

Window iconification status via Xlib

Is it possible to check with the means of pure X11/Xlib only whether the given window is iconified/minimized, and, if it is, how?

热门标签