vote up 5 vote down star
2

Is there a strategy or at least best practice to write an app that runs on iPhone, BlackBerry and Android?

I'm ignorant about the development environments for BB and Android, but I assume they both support Java apps.

I know that the iPhone would require an ObjectiveC portion (as well as a whole new UI).

Has anyone done this?

flag

4 Answers

vote up 11 vote down check

You might want to check out http://phonegap.com/

link|flag
+1 I have not used it, but phonegap looks promising. – Chris Ballance May 4 at 17:41
Good suggestion... – Software Enthusiastic May 4 at 17:42
1  
I've used it a few times. While it's obviously as not full-featured as writing a native app, its excellent for small, cross-device apps – cpjolicoeur May 4 at 17:42
Just watched the movie. Perfect. Thank you! – Michael Pryor May 4 at 21:22
Just so you know, the phonegap framework, as of this writing, does not offer a unified persistent storage mechanism between the platforms. This has been a major source of pain for those of us trying to write-cross platform apps. There are also many other differences between the platforms, so, as you start your project, you'll want to make a concerted effort to establish which techniques are available to you. – JJBigThoughts Jun 19 at 15:18
vote up 2 vote down

Another option to look at is Rhodes, which is a Ruby framework.

link|flag
vote up 0 vote down

http://j2mepolish.org could be good choice, however, iphone is only in the roadmap. But android and BB are already supported as well as all other j2me phones.

link|flag
Now if only J2ME itself didn't suck so horribly, that might be a useful solution. – davr May 4 at 21:40
vote up 0 vote down

When writing multiplatform apps, you need to decide how much of the code to share. The 2 options are • everything. You use(write) cross platform gui libraries and system routines • the logic is cross platform but the presentation layer is platform specific

The 2nd approach tends to give better apps but it is a more work (assuming you don't need to write the cross platform libraries).

The tricky thing with the mobile world is picking a language. Right now you have •Java - Android, Blackberry, Java ME phones •Object C/C - iPhone, windows Mobile •Javascript - Palm Pre

You can cross compile java to javascript and vice versa. You can also compile java to C or use a javascript engine that you can call from C. I don't think you can run C on a java/javascript phone. That leads me to suggest writing your code in Java/Javascript. Cross compiles (and mixing languages in general) have the downside of making debugging a bit harder.

link|flag

Your Answer

Get an OpenID
or

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