Was just wondering if there were any cross platform development platforms which would run great for corporate type apps on various mobile devices.

Would be ideal if the language was C# but feel free to suggest others.

link|improve this question

6  
But promise me one thing: rewrite the user interface completely for each platform. – WTP'-- Mar 7 '11 at 2:20
feedback

7 Answers

up vote 4 down vote accepted

have you checked out Titanium at http://www.appcelerator.com

And then there is the PhoneGap at http://www.phonegap.com/

link|improve this answer
But are those tools any good? That to me is the real question. Because if they are good, then everyone should be using them as much as possible. But my feeling is that few individual developers are going this route. – Fraggle Mar 12 '11 at 13:13
Do either of those tools work with wp7? – PsychoDad Mar 15 '11 at 22:00
feedback

If you're happy to re-use business logic and write device specific user interfaces (more work, but better user experience on each device) you could consider the various Mono frameworks.

Writing the core business logic as a class library, then writing specific user interfaces using MonoTouch, MonoDroid and Windows using .NET Framework you'll have a cross platform application (albeit with individual UIs) in C#.

link|improve this answer
Hi Michael, can you recommend an architecture for this sort of thing? Obviously MVVM is out of the question as a pattern as only Wp7 would support that. What about MVP pattern with the view's coded for specific hardware? – Dr. ABT Jan 6 at 9:11
feedback

Worth noting that you'd be writing once for the PLATFORM, but being certain that your app works on the DEVICES is a different kettle of fish due to the variety of handset providers, their customized platform implementations and the hardware specific to the device.

Check out these related questions... otherwise know as duplicates....

Developing cross platform mobile application

Are there any huge differences between objective-c and Java, or iPhone and Android?

What work has been done on cross-platform mobile development?

link|improve this answer
feedback

Titanium Mobile is a popular choice these days.

I strongly doubt that you'll find a C# option* that's cross-platform since C# is tied to the Microsoft stack.

You could also just write a mobile-centric webapp with jQuery Mobile or similar.


*For mobile. For desktop, there's Mono (whose site appears to be down right now).

link|improve this answer
this is interesting. could you tell (us) a little more about titanium and what it does? – Darkhydro Mar 7 '11 at 2:20
1  
C# isn't tied to Microsoft. Mono (as you mentioned) provides a C# runtime for multiple platforms. It isn't just for desktop either, MonoTouch is a native framework for iOS devices using C# and MonoDroid exists for for Android devices. – Michael Shimmins Mar 7 '11 at 2:34
@Michael: thanks, I tend to forget about MonoTouch, since I'm really not a C# dev. – Matt Ball Mar 7 '11 at 4:16
feedback

well if you've got a mac, your best bet would be to go for phonegap which supports a wide range of platforms,

if not, you could go for titanium

link|improve this answer
feedback

Although there are many platforms that provide you the facility to write once and run on multiple platform but from my point of view its not a great idea for simple reason of performance just think of below example

A C code is far faster than a java code because java provides you the virtual machine to run that code and java is far more easier to write than that of C. The idea is the more you stick close to native API the more you will get performance.

So considering the above example just think what will be the performance of such application that is supported on so many platforms

Note: I have not worked on any of such platforms so I might be wrong but this just a simple conception that fits to all

link|improve this answer
"A C code is far faster than a java code because java provides you the virtual machine to run" -- This is not true. Look at any modern benchmarks and in many cases the JIT compiler in the JVM gets performance to almost on par with native compiled. This a myth and relic from 1996. – Scott Mar 11 '11 at 20:17
feedback

Indeed, this will be possible using Resco MobileForms Toolkit with monotouch and monodroid. You can create an app for Windows Mobile using C# and quickly rebuild those apps to work under Android and iPhone/iPad

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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