Windows Phone 8 Platform Guide

This 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.

NOTE: Applications built with Apache Cordova for Windows Phone 8 run only on Windows Phone 8 devices. If you want to target both 7.5 'and' 8 devices, then use Apache Cordova for Windows Phone 7, which does not have all the advanced features included in IE10, but implements the same APIs.

  1. System Requirements

  • Operating System:
    • Windows 8 or Windows 8 Pro
      • The 64-bit version (x64) of Windows is required for the SDK.
      • The Pro version is recommended so you can run a device emulator.
  • Hardware:
    • 6.5 GB of free hard disk space
    • 4 GB RAM
    • 64-bit (x64) CPU
  • Windows Phone 8 Emulator
  • SDK + IDE ( Visual Studio )
    • Visual Studio 2012 Professional, Premium, or Ultimate. Note that Visual Studio Express for Windows Phone (included in the SDK) is not recommended because you can not build the template (see below) with VS Express, as it does not have the Export Template functionality, which is only in VS Pro or higher.
  • Register and pay for a Windows Phone Dev Center account if you want to install your app on a real device and/or submit it to Market Place.

NOTE: Running the SDK in Virtual Machine might present some challenges. You can read this blog post that gives insight on the solutions to develop for Windows Phone on a Mac.

  1. Install SDK + Cordova

  • Download and install Windows Phone SDK
  • Download and extract the latest copy of Cordova. You will be working in the lib\windows-phone-8 subfolder.
  • Copy the file CordovaWP8_x_x_x.zip to the folder : \My Documents\Visual Studio 2012\Templates\ProjectTemplates\

2.1. Building the template

NOTE: this step may not be required. If the lib\windows-phone directory already contains a file CordovaWP8_x_x_x.zip then you may skip this step.

In order to simplify the development process, Cordova comes with a Visual Studio template that allows creating a Cordova application rapidly. This template can be modified if needed and the below steps indicate how to proceed if you want to modify and re-generate the template.

  • Open the lib\windows-phone\templates\standalone\CordovaSolution.sln file in Visual Studio Express for Windows Phone.
  • Select Export Template… from the File menu.
  • Choose template type Project template
  • Give the exported template a name, such as CordovaStarter-2.1.0, which produces a CordovaStarter-2.1.0.zip archive.
  • Optionally, you may add a description, icon image, and preview image. These display in Visual Studio's New Project dialog.
  • NOTE: If you select Automatically import the template…, then you don't need to copy the .zip file over as outlined in step 2.
  • Press Finish

2.2 About the different templates

Apache Cordova for Windows Phone 8 only supports the standalone template.

The 'Stand-Alone' template includes all the source code for Apache Cordova. This project is easier to fine-tune to use just the features you need, thereby working around the permissions issues of the 'Full' template, however this type of project is more difficult to update, as you update individual files within your project and manage any dependancies yourself. In order to exclude an unused API, simply right-click-select the Command class file in Visual Studio and choose do not include in project.

  1. Set up New Project

  • Open Visual Studio Express for Windows Phone and choose New Project.
  • Select CordovaWP8. (The version number is displayed in the template description.)
  • Give the project a name, and select OK.

  1. Review the project structure

  • The 'www' folder contains your Cordova html/js/css and any other resources included in your app.
  • Any content that you add here needs to be a part of the Visual Studio project, and it must be set as content.
  • Note: This screen capture was from the cordova-2.3.0 download, your listing will vary based on the actual version installed.

  1. Build and Deploy to Emulator

  • Make sure Windows Phone Emulator is selected in the main drop-down menu.
  • Press the green play button next to the drop-down menu to start debugging, or type F5.

  1. Build your project for the device

In order to test your application on a device, the device must be registered. Click here to read documentation on deploying and testing on your Windows Phone 8.

  • Make sure your phone is connected, and the screen is unlocked.
  • In Visual Studio, select 'Device' from the top drop-down menu.
  • Press the green play button next to the main drop-down menu to start debugging, or type F5.

Done!

Further Reading

For more details on the specific differences between IE10 and WebKit browsers, and how to support both MS has a helpful guide here