vote up 8 vote down star
5

A few months ego I purchased Nokia N800 device and since then I'm itching to write some code for it. I know that some of the application I'm running are written in Python and that there is a Mono port for the Maemo platform as well.

Basically what I'm asking is:

  • Is there a recommended development language for Maemo platform?
  • What development tools exist?
  • I can use Windows or Linux as my primery development machine - which recommended? why?
flag

6 Answers

vote up 6 vote down check

The Hildon framework is made up of GTK+ extensions, so the language is C. You can use C++ wrappers (maemomm) too. Or you can go with pymaemo for building apps with Python, which to me is much easier than C or C++. I've also seen an attempt at a ruby port, but have not followed up with that project recently.

For the development environment, there is "scratchbox", which gives you a sandbox for compiling and running your app. Here's a link on how to set up a scratchbox development environment. (It sure took me a long time to get everything setup.)

You'll have to use Linux as your development machine because your Nokia N800 is really a mini Linux computer.

If you want to have an IDE experience, try the ESbox plugin for Eclipse.

Have fun hacking!!!

link|flag
vote up 3 vote down

I highly suggest that you try C++ and QT.

QT is already well supported for Diablo and Fremantle, and the next release of Maemo (Harmattan) should be based on QT.

Learning QT will be much much easier than GTK+, coding will be faster and more fun, your application can be compiled in various platforms and you can even develop and debug in Windows, then simply run a qmake && make in a scratchbox environment.

Take a look at this tutorial: Getting started wit QT for Maemo

You still need a Linux box to compile your code for a Maemo device. If you are using windows, you can setup ubuntu (or kubuntu) in a VirtualBox machine.

Maemo SDk + along with Scratchbox 2 is a better alternative than Maemo SDk & Scratchbox.

Personnally, I'm using QT creator in Windows, kubuntu 9.04 in VirtualBox, and I've never been happier. When I started, I tried the "official" approach : Ubuntu, GTK+, C language and scratchbox 1. ... that was painful.

link|flag
vote up 2 vote down

I've just found two tutorials on Maemo.org:

link|flag
vote up 1 vote down

For extra on-the-go fun, you can get the linux gcc and make tools running on the tablet itself and do your programming and compiling on the device. For any help with this sort of stuff the Maemo Talk forums are fantastic.

link|flag
vote up 1 vote down

There's a Scratchbox Virtual Appliance for Maemo development (I'm not sure if the link is the right one) but that's how I started hacking. It took forever for me to figure out how to set up scratchbox by myself.

link|flag
vote up 0 vote down

Ruby for Maemo is being hosted at http://code.scottishclimbs.com/maemo/

I've not yet tried it myself.

link|flag
I should give it a try - I even heard about running Rails on a Maemo device – Dror Helper Nov 14 at 6:17

Your Answer

Get an OpenID
or

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