vote up 21 vote down star
10

Now that the G1 with Google's Android OS is now available (soon), will the android platform ever support .Net?

flag

60% accept rate
1  
Now that would be something! – Calanus Aug 8 at 16:25

8 Answers

vote up 36 vote down check

Yes, it will be possible and it won't be that difficult. All what's needed at this point to start with is some kind of converter that will turn MSIL into Dalvik bytecode. Since both formats are open-sourced and well documented, there won't be any problem with it.

So, writing Android applications in C# or VB.NET will be possible, question is how much of .NET framework standard libraries will be supported. But that's another issue.

Oscar Reyes wrote:

I'm pretty sure if google hand ANY interest in .net, they would've design something while Android was in the first stages, not now when they are in production stages. I don't mean it is not possible, what I'm saying is they're not interested. Maybe in mmm hhhh 10 yrs.

Actually what they've already designed is very compatible with Java and .NET

They can't do everything at once, but if you look into Android SDK, there is a tool called dx. This tool converts Java bytecode into Dalvik bytecode, so in other words, you can run programs written in Java on Android with no effort today. Now the same tool is needed for .NET.

Considering how similar .NET and Java are, it's really a matter of time.

ddimitrov wrote:

The .Net->Java->Dalvik translation can be done even now (http://dev.mainsoft.com/), but I think you underestimate the lack of .Net libraries. Of course somebody can port Mono, but it's definitely a non-trivial effort.

No need to port Mono. Android already has VM and some basic API. All what's needed is CIL->Dalvik converter and tiny .NET wrapper for Android API (and maybe some basic implementation of some standard .NET classes). That's it.

Update: Mono works on Android as Miguel pointed out but I need to say that it's almost impossible for average person to get it work on their phones. I still wonder why Google went ahead to develop their own runtime environment if they could easily plug-in Mono in the first place.

While I like Mono very much, small companies aren't going to bet their future on it unless some bigger ones put some weight behind. I wonder why Google didn't want to use Mono as its primary development platform for Android. Maybe that's something Miguel could know more about...

link|flag
Yes, we never know... perhaps, perhaps... Well make it 4 yrs instead of 10 ... :P – Oscar Reyes Oct 24 '08 at 4:52
I don't agree. Everything you say IS technically possible, but I think you underestimate the work needed by an order of magnitude. It's always easy to put together a proof-of-concept like a crosscompiled hello word in a few hours. But to setup wrappers for all classes is A LOT of work. – Brian Schimmel Jan 7 at 0:36
Check out the video that Sirish Kumar has linked to: youtube.com/?v=s8nMpi5-P-I It shows how much work is to be done. – Brian Schimmel Jan 7 at 0:40
@Brian, video you've posted is about iPhone not Android. – lubos hasko Feb 6 at 5:59
1  
Well, given Google's Java affinity it's not too surprising that they didn't go for .NET with this. Yes, using Mono might be feasible but I'm almost sure Google would avoid using .NET with similar zeal as Microsoft would avoid using Linux. – Johannes Rössel Nov 24 at 7:02
vote up -1 vote down

Short answer. NO

Long answer.... Well... it's not the right time for long answers but. Android is open source, .net is not, they're kind of incompatible in nature ( not technologically but in "philosophy" )

Android has an Apache style license, that mean that anyone can do what they want with the source code, so if there is a group of very inspired and talented geeks, the .net support may be done outside google control in a parallel project. Of course I think none of the coders with enough knowledge, time ( and lets face it money ) will think in start this subproject by them selves and they will focus on current Android development as it is.

Since .net is NOT open source, the integration may be done only under Microsoft sponsorship ( because at difference of Mono, it's not about to create a new JVM -oops I mean CLI- ) Well probably someone think in creating the port.

So although it is human possible , don't expect this will come from Google nor Microsoft. If this ever happen ( and I already say it won't ) it will be from someone as genious as Miguel de Icaza.

Perhaps here is the next ggrrrrreat open source project.

Chau!

EDIT 22 jan 2009

I was about to eat my own answer but in a second read I can argue that I said:

Not from Google or Microsoft[...] but someone as Miguel de Icaza

And there it is, a few weeks later Miguel providing links about the progress of Mono on Android.

:)

Shoot me now!!!

link|flag
1  
Heard of Mono? Just because it's not available now doesn't mean it won't be ever. – Robert P Oct 20 '08 at 23:28
The limitation is not technical, but business nature. Microsoft - Google. Perhaps from a third party – Oscar Reyes Dec 24 '08 at 0:44
I agree, to a point, but a blanket NO is too much. – jcollum Jan 3 at 19:48
vote up 1 vote down

A modified port of Mono is also entirely possible.

link|flag
@akdom, do you have experience with porting of software from desktop/server OS to embedded? I have some mobile development experience (Java and Brew) and IMHO, you are grossly underestimating the effort. It might be possible, but deffinitely not in the next 3 years. – ddimitrov Oct 18 '08 at 7:04
@ddmitrov: The question was whether the android platform with EVER support .NET, not whether it will within the next three years. I was merely positing that since Mono is an open source implementation of .NET it would be easier to construct an android version of Mono than to start from scratch. – akdom Oct 18 '08 at 18:14
vote up 1 vote down

Check this out http://www.xmlvm.org/overview/ . I think this is possible. May be can also check this video http://youtube.com/?v=s8nMpi5-P-I

link|flag
I like that answers. It shows that it is possible, but if you watch that video, it also shows how many problems are still open to solve and how much work is behind all that. – Brian Schimmel Jan 7 at 0:39
vote up 1 vote down

.NET compact framework has been ported to Symbian OS (http://www.redfivelabs.com/). If .NET as a 'closed' platform can be ported to this platform, I can't see any reason why it cannot be done for Android.

link|flag
vote up 0 vote down

You're more likely to see an Android implementation of Silverlight. Microsoft rep has confirmed that it's possible, vs. the iPhone where the rep said it was problematic.

But a version of the .Net framework is possible. Just need someone to care about it that much :)

But really, moving from C# to Java isn't that big of a deal and considering the drastic differences between the two platforms (PC vs. G1) it seems unlikely that you'd be able to get by with one codebase for any app that you wanted to run on both.

link|flag
vote up 0 vote down

In my opinion, it would be technically possible to convert the CLI Bytecode to Dalvik, and to write wrapper classes for some core features such as Collections, File access, etc., even it would be hard work.

But a .NET desktop application ran on android would feel alien, as it would have a classic Windows-Like GUI which is not very usable on a touch device. If, on the other hand, you were to code an android-like GUI in .NET, you would need another set of wrappers (notice that wrapping is just the other way round opposed to the wrappers mentioned above).

I'm not sure if a .NET mobile application would feel native on android, but I'd guess it wouldn't.

Maybe you're interestend in another approach: You can write your application in the Java language. You can then compile it to .NET via Microsoft J# (I know it's discontinued but you can still download and use it) and use the same Java code on android. Again, that's for the core classes aka business logic and again you would have to write tow GUIs. Maybe you can tages J2ME as well, which you will not be able to do if you use .NET.

link|flag
vote up 44 vote down

Mono now works on Android thanks to the work of Koushik Dutta and Marc Crichton.

You can see a video of it running here: http://www.koushikdutta.com/2009/01/mono-on-android-with-gratuitous-shaky.html

And you can get the instructions to build Mono yourself here: http://www.koushikdutta.com/2009/01/building-mono-for-android.html

You can get a benchmark comparing Mono's JIT vs Dalvik's interpreter here: http://www.koushikdutta.com/2009/01/dalvik-vs-mono.html

And of course, you can get a pre-configured image with Mono here (go to the bottom of the post for details on using that): http://www.koushikdutta.com/2009/01/building-mono-for-android.html

link|flag
Well, I said, not MS nor Google but probably Miguel and here you are ( well I know it wasn't you, but somehow close ) Great links Miguel. Do you think Google would ever support this? I mean they taking the port under their hood? :) If I could I would downvote my own answer :) – Oscar Reyes Jan 22 at 8:46

Your Answer

Get an OpenID
or

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