[DEPRECATED] Apache Cordova Windows

Clone this repo:
  1. 5e7f2ac fix(win10): read splashscreen correctly from manifest (#358) by Jan Piotrowski · 1 year, 9 months ago master
  2. 0454321 deprecate windows by Jesse MacFadyen · 1 year, 9 months ago
  3. 23c932c remove CI for unsupported os (#396) by Jesse MacFadyen · 2 years, 6 months ago
  4. bb3eae2 refactor!: drop q (#395) by Raphael von der Grün · 2 years, 6 months ago
  5. 9314e5d Merge pull request #393 from purplecabbage/gh-actions by Jesse MacFadyen · 2 years, 10 months ago

📌 Deprecation Notice

This repository is deprecated and no more work will be done on this by Apache Cordova. You can continue to use this and it should work as-is but any future issues will not be fixed by the Cordova community.

Feel free to fork this repository and improve your fork. Existing forks are listed in Network and Forks.


Apache Cordova for Windows

Build status Build Status codecov.io

This repo contains the code for an Apache Cordova platform that allows you to build applications that target Windows 10, and Windows 8.1, as well as Windows Phone 8.1. An Apache Cordova based applications is written in HTML, CSS and JavaScript.

(Warning: Windows 8 has been deprecated, please update your applications to target Windows 8.1 or above)

Apache Cordova is a project of The Apache Software Foundation (ASF)

Requirements

See https://cordova.apache.org/docs/en/dev/guide/platforms/windows/index.html#requirements-and-support

Note that Visual Studio 2019 is not supported, as discussed in cordova-windows issue #327.

Getting started

The best way to use this is to install the Cordova CLI, create a project, add the windows platform, and run the app:

npm install -g cordova
cordova create test
cordova platform add windows
cordova run windows

Getting logs from Windows Store applications

You can get your JavaScript logs as well as Windows logs related to your Windows Store application by running the following command from your app directory:

platforms\windows\cordova\log

In most cases, this command requires administrator privileges. However, if you want to gather logs without admin privileges, you may need to manually enable logging channel via Event Viewer:

Start -> Run -> eventvwr
View -> Show Analytic and Debug Logs
Applications and Services Logs -> Microsoft -> Windows -> AppHost -> AppTracing -> Enable Log

Please note that the log command is supported only for Windows Store applications and cannot get logs from Windows Phone application.

Report Issues

Report them right here at GitHub using the “Issues” tab.

Further Reading