How to deploy an ionic application to a Windows 10 device

I am trying to deploy my ion mobile application to a Windows 10 device after adding a Windows platform using

ionic platform add "windows@https://aka.ms/cordova-win10"

which was successful, I decided to launch it using

ionic run windows

that is, when the error occurred as follows

enter image description here

+4
source share
2 answers

Firstly, some preconditions (100% must have all of them):

  • Windows 10 SO
  • Windows 10 SDK
  • Visual Studio 2015 with the "Application Development Tools for Universal Windows Applications, Cross-Platform Mobile Development> HTML / JavaScript" selected when selecting options.
  • Ionic Framework

.

outo

+2

, config.xml:

<preference name="windows-phone-target-version" value="10.0" />

:

<platform name="windows">
    ...
</platform>
<preference name="windows-phone-target-version" value="10.0" />

.

0

All Articles