Reputation: 362
I don't have ARM devices like Surface RT available in my country now, Is there any way to test my app on ARM Simulator from Visual Studio.
Upvotes: 2
Views: 669
Reputation: 51
As well said in the comment above, there is no ARM simulator available.
That said, an ARM device functions pretty much like a x86 PC. You just have to test all the resolutions and pixel densities available in the simulator.
And beware of the fact that a Surface RT can be more that 10 times slower than a typical PC. So if a computation takes half a second on your PC, it may take far too long on a Surface.
Upvotes: 2