📜 ⬆️ ⬇️

Apache Cordova adds support for Windows 8.1 and Windows Phone 8.1

Windows Universal Apps have come to the popular cross-platform mobile application framework Apache Cordova .

image

The universal windows platform has come to replace the old windows8 platform, which allows you to create applications right under Windows 8.0, Windows 8.1 and Windows Phone 8.1.

You can start from here: msopentech.com/blog/2014/09/25/apache-cordova-gains-windows-8-1-and-windows-phone-8-1-support-2-2
Directly release: cordova.apache.org/announcements/2014/09/22/cordova-361.html
')

Example for Windows Phone 8.1 (we execute from the command line)


1. Install the framework from npm
npm install -g cordova 

2. Create an application
 cordova create awesomeApp cd awesomeApp 

3. Add windows platform
 cordova platform add windows 

4. Run on Windows Phone 8.1 emulator
 cordova emulate windows -- --phone 

image

Source: https://habr.com/ru/post/239433/


All Articles