0

How can I see the cordova version that is in use in a visual studio multi device hybrid app application?

2 Answers2

0

The value is stored in the JavaScript global cordova.version.

0

You can find the Cordova and Cordova-CLI version by looking into following files:

1.) Cordova version = bld\Debug\platforms\android\cordova\version enter image description here

2.) Cordova CLI version = bld\Debug\platforms\cli-version

enter image description here

Abhishek - MSFT
  • 1,598
  • 11
  • 17
  • How can I update my CTP2 project to CTP3 and forces it to use cordova 4 (4 is the version that comes with CTP3)?? – Vitor Costa Dec 01 '14 at 19:54
  • You need to install CPT3 from here http://www.visualstudio.com/en-us/explore/dn841948#Fragment_Quickstart. Open the project after installing CPT3.0, you might have to remove and add plugins and build the project, it should use Cordova-CLI4.0 – Abhishek - MSFT Dec 01 '14 at 20:14