vote up 1 vote down star

I've never developing anything for mobile platforms yet. But now I need an app, that can perform basic read/write/update operations with contact list.

It should work in Symbian and WinMobile, but it's normal if we have 2 different applications (but if it's possible then I prefer to make only one). In first version it's not even necessary to make GUI. I just want to download and install and start the app, and it will exit after finishing.

What instruments (which IDE, what simulators and so on) should I have to develop this app? I know Java, but I've never used J2ME so if it's easier to use something .net-based or something cpp-based, then it's ok.

Another question: working with contact list is platform specific or concrete cellphone-specific?

flag

40% accept rate
I would suggest first going through basic development tutorials for both platforms. The Symbian SDK for your chosen phone will have example code. I suspect the windows mobile sdk will also have some. – QuickRecipesOnSymbianOS Oct 5 at 15:48

2 Answers

vote up 1 vote down

Here's a related question on working with contacts on Symbian: http://stackoverflow.com/questions/980113/symbian-is-it-possible-to-get-access-to-a-list-of-contacts-through-an-applicatio

link|flag
vote up 1 vote down

hi,

unfortunately in the cellphone market everything is really custom stuff.

Symbian and Windows Mobile have nothing to do with each other API wise, except that it is for both possible to program C against it.

Windows mobile also allows .net programs, but symbian doesn't without adding the proprietary .net runtime from redfivelabs. The API for getting your contacts is on both platforms wildly different.

To make something cross platform for it, make a hardware abstraction layer and program against that. And on both platforms implement your HAL with the specifics.

For java they said program once, run many... but unfortunately is is more: program once, debug many. On every phone, the VM is different, and has it's own set of peculiar bugs to work around. The API for manipulating contacts though is standardized, although again, that says nothing in JAVA. Chances are it works on 15% of handsets, and the rest has to be figured out using patches.

welcome to my world... ;^)

link|flag
Could you give me some links to useful resources, please? Have you ever tryed JavaFX? Or users should download it first and it's a huge problem? – Roman Sep 30 at 7:46
It is possible to write .net compact framework apps on symbian using Red Five Labs runtime. Here's a link: developer.symbian.org/wiki/index.php/… – Matt Sep 30 at 8:26
I don't know how good it is, never used it, and I suspect that the api's for the contacts apps would be different for each platform – Matt Sep 30 at 8:26
roman: javafx is meant for the desktop as far as i know. on the mobile you have the j2me version... some phones accept the full version of java, but this is rare – reinier Sep 30 at 10:09
matt: interesting. thanks for the tip – reinier Sep 30 at 10:09
show 1 more comment

Your Answer

Get an OpenID
or

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