UNPKG

5.02 kBMarkdownView Raw
1Licensed to the Apache Software Foundation (ASF) under one
2or more contributor license agreements. See the NOTICE file
3distributed with this work for additional information
4regarding copyright ownership. The ASF licenses this file
5to you under the Apache License, Version 2.0 (the
6"License"); you may not use this file except in compliance
7with the License. You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11Unless required by applicable law or agreed to in writing,
12software distributed under the License is distributed on an
13"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14KIND, either express or implied. See the License for the
15specific language governing permissions and limitations
16under the License.
17
18
19Getting Started with Windows 8
20==================================
21
22This guide describes how to set up your development environment for Cordova and run a sample application. Note that Cordova used to be called PhoneGap, so some of the sites still use the old PhoneGap name.
23
24During development of Windows 8 and Windows RT, Microsoft deprecated the name "Metro-style apps". On MSDN, this type of app is now called a "Windows Store" app. That's the name that we'll use in this guide. Also in this guide whenever we refer to Windows 8, you should take that to mean both Windows 8 and Windows RT.
25
261. Requirements
27---------------
28
29- Windows 8
30
31- Visual Studio 2012 Professional or better, or Visual Studio 2012 Express for Windows 8
32
33Follow the instructions [here](http://www.windowsstore.com/) to submit your apps Windows Store.
34
352. Install SDK + Cordova
36----------------------------
37
38- Setup your preferred variant of Visual Studio 2012. All of the paid versions of the product (Professional, etc) let you build Windows Store apps. To build Windows Store apps using the [Express editions](http://www.microsoft.com/visualstudio/eng/products/visual-studio-express-products), you will need **Express for Windows 8**.
39- Download the latest copy of [Cordova](http://phonegap.com/download) and extract its contents. We will be working with the subfolder **lib\windows-8**.
40
413. Setup New Project
42--------------------
43
44You can already build Windows 8 apps using the "HTML/JavaScript track" available in Windows Store apps. The purpose of Cordova in Windows Store apps is to expose the same APIs used on all the other Cordova platforms.
45
46- Open Visual Studio 2012 and choose **New Project**.
47- Select **Installed - Template - Other Languages - JavaScript - Windows Store** from the tree, and then **Blank App** from the projects list. Enter whatever project name you like. We're using **CordovaWin8Foo** in this guide.
48
49 ![](img/guide/getting-started/windows-8/wsnewproject.PNG)
50
51- Microsoft continues to use **default.html** as the default page for use in websites, whereas most "open web" developers use **index.html**. (Plus it's likely that in the other platform variants of your project you are using **index.html** as the name of your default page.) To fix this, in Solution Explorer rename the **default.html** file to **index.html**. Then double-click the **package.appxmanifest** file and change the **Start page** value to **index.html**.
52
53 ![](img/guide/getting-started/windows-8/wschangemanifest.PNG)
54
55- To include **cordova.js** in your project, right-click on the **js** folder in Solution Explorer and select **Add - New Item**. Locate the **corvoda.js** file in the **lib\windows-8** folder that we called out previously.
56
57- Edit the code for **index.html**. Add a reference to **cordova.js**. You can do this manually, or by dragging the file from Solution Explorer.
58
59### Adding the reference...
60 <!-- WinJS references -->
61 <link href="//Microsoft.WinJS.1.0/css/ui-dark.css" rel="stylesheet" />
62 <script src="//Microsoft.WinJS.1.0/js/base.js"></script>
63 <script src="//Microsoft.WinJS.1.0/js/ui.js"></script>
64
65 <!-- Cordova -->
66 <script src="/js/cordova-x.x.x.js"></script>
67
68 <!-- CordovaWin8Foo references -->
69 <link href="/css/default.css" rel="stylesheet" />
70 <script src="/js/default.js"></script>
71
72- Next we want to add some code that will demonstrate that Cordova is working.
73
74### Adding a 'deviceready' handler...
75 <body>
76 <p>Content goes here</p>
77
78 <script type="text/javascript">
79
80 console.log("Subscribing...");
81 document.addEventListener("deviceready", function () {
82
83 navigator.notification.alert("The device is ready!");
84
85 });
86
87 </script>
88
89 </body>
90
91
925. Test the Project
93-------------------------------
94
95- Run the project from Visual Studio. You'll see the message box appear.
96
97 ![](img/guide/getting-started/windows-8/wsalert.PNG)
98
99Done!
100-----
101
102That's it! You're now ready to build Windows Store apps with Cordova.
103
104## Issues &&|| Defects
105- [https://issues.apache.org/jira/browse/CB](https://issues.apache.org/jira/browse/CB)
106
107## Further Reading
108- [http://docs.phonegap.com](http://docs.phonegap.com)
109- [http://wiki.phonegap.com](http://wiki.phonegap.com)