Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/apache/cordova-windows
[DEPRECATED] Apache Cordova Windows
https://github.com/apache/cordova-windows
cordova cplusplus csharp java javascript library mobile nodejs objective-c
Last synced: 3 months ago
JSON representation
[DEPRECATED] Apache Cordova Windows
- Host: GitHub
- URL: https://github.com/apache/cordova-windows
- Owner: apache
- License: apache-2.0
- Archived: true
- Created: 2012-11-28T08:00:28.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2023-01-09T07:51:13.000Z (almost 2 years ago)
- Last Synced: 2024-09-26T16:01:21.758Z (3 months ago)
- Topics: cordova, cplusplus, csharp, java, javascript, library, mobile, nodejs, objective-c
- Language: JavaScript
- Homepage:
- Size: 37.7 MB
- Stars: 203
- Watchers: 41
- Forks: 171
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
📌 **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](../../network) and [Forks](../../network/members).
- Learn more: https://github.com/apache/cordova/blob/master/deprecated.md#deprecated-platforms
---# Apache Cordova for Windows
[![Build status](https://ci.appveyor.com/api/projects/status/19h1fq0lyvwtei05/branch/master)](https://ci.appveyor.com/project/Humbedooh/cordova-windows/branch/master)
[![Build Status](https://travis-ci.org/apache/cordova-windows.svg?branch=master)](https://travis-ci.org/apache/cordova-windows)
[![codecov.io](https://codecov.io/github/apache/cordova-windows/coverage.svg?branch=master)](https://codecov.io/github/apache/cordova-windows?branch=master)This repo contains the code for an [Apache Cordova](http://cordova.apache.org) 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](http://cordova.apache.org) is a project of [The Apache Software Foundation (ASF)](http://apache.org)
# 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](https://github.com/apache/cordova-windows/issues/327).
# Getting started
The best way to use this is to install the [Cordova CLI](https://www.npmjs.com/package/cordova), 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 LogPlease 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](https://github.com/apache/cordova-windows/issues).
# Further Reading
- [Windows Platform Guide](https://cordova.apache.org/docs/en/latest/guide/platforms/windows/index.html)
- [Apache Cordova Documentation](http://docs.cordova.io)