5

I need to run a Windows Phone 7 app developed for our company but no one has a Windows phone.

Is there any way I can run it on my Android, perhaps a simulator or something?

Andrew T.
  • 15,988
  • 10
  • 74
  • 123
Armance
  • 279
  • 3
  • 13

2 Answers2

7

There is currently no way to run Windows Phone 7 apps on Android devices.

Chahk
  • 19,505
  • 3
  • 56
  • 80
3

Windows uses Win32API binaries, along with an optional virtual machine called .NET CLR for .NET binaries, which encompasses C#, VB.NET, and Managed C++.

Whereas, Android apps, are written in Java that targets DalvikVM.

The nearest is MonoDroid, which enables apps written in .NET languages and sort of transliterates the compiled bytecode suitable for DalvikVM... I say transliterate.. it's not exactly 100% on the ball either and it's expensive as well! The added bonus with it, is cross-compilable for iOS too :)

Andrew T.
  • 15,988
  • 10
  • 74
  • 123
t0mm13b
  • 13,436
  • 1
  • 48
  • 58