Search code examples
cordovawindows-phonecordova-win10

need help to getting started with cordova windows phone 10 application


I am cordova developer. I did application in windows phone 8 and windows phone 8.1.

but now after windows phone upgrade to 10 i need to make my app compatible to windows phone 10 also.

but i couldn't find any doc for making windows phone 10 app in cordova documentation.

Can any one help in this?

Thank you in advance.


Solution

  • Adding Windows 10 support to your app is as easy as setting your Windows target platform version to 10.0 (config.xml):

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

    Cordova for Windows 10 docs

    Visual Studio Tools For Apache Cordova-way