Julian
Julian

Reputation: 1622

how to add windows phone emulator to the uwp project

Now I'm updating someone's UWP project. I use Visual Studio 2017 on windows 10 64bit. Building is successful. But When I run this project, I got an error.

DEP6200: Bootstrapping failed.Device cannot be found. SmartDeviceException - Deployment failed because no device was detected.

I think, the reason is that I didn't use real windows phone. So that I wanted to use windows phone emulator. But I don't know how to add emulator to running option. When I created new UWP project, I could find emulators which are connect to that project.

Anyone solved this issue?

Upvotes: 0

Views: 411

Answers (2)

Barry Wang
Barry Wang

Reputation: 1469

To use emulator there are some prerequest, you can check it from here.

That's to say, first ,you need to make sure you followed the system requirements.

Then you have to install emulator like MKH said. And at last, set the CPU to ARM and choose the emulator you need, run the project and you will see the result.

Upvotes: 0

MKH
MKH

Reputation: 367

You have to install Emulators.
Please take a look at this page and download them Windows Emulator archive .

Simply choose your emulator version that you want to debug your app and then Click INSTALL EMULATOR , After installation Restart Visual Studio .
How to debug app on installed Emulator

Upvotes: 1

Related Questions