Xamarin runtime vs Dalvik

I'm looking for alternatives to native development for 3 big mobile ecosystems and ended up in Xamarin Studio.

Simple question, does the Xamarin runtime "pass (replace)" the Dalvik VM in Android? Another simple question: does Xamarin generate binaries for ARM processors only? Are Intel Atom mobile phones not working?

+3


source to share


1 answer


Does the Xamarin runtime "pass (replace)" "Dalvik VM" in Android?

No, Xamarin ships inline C # runtime with your application, but Java resources are only accessed by binding.

Another simple question: Does Xamarin generate binaries for ARM processors only?



Not. By default your apk will have the Xamarin Runtime for arm6, arm7 and x86 (used in Intel Atom). You can also enable runtime for arm64 e x86_64 or remove any of them.

And Intel Atom mobile phones don't work?

As I said, it works with x86 architecture including Intel Atom

+8


source







All Articles