Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to update my phonegap version?

Tags:

How can I update my PhoneGap version in my project?

I have download the latest version of phonegap..but how to update?

I've tried grep myAppPath .ipa 'uniqueIdentifier' *

I've gotten "access denied"

like image 497
Aranha Silva Avatar asked May 16 '13 15:05

Aranha Silva


People also ask

How can you upgrade phonegap?

For Android you just need to replace your . jar/. js files with the 1.2 versions and update the script tag to refer to the phonegap-1.2.

Which command is used to upgrade phonegap?

Hi Simplest way to ensure and update latest phonegap version in your system. C:\Users\user1>npm install -g [email protected] mac sudo npm install -g [email protected] You can ensure you are using latest version of phonegap......

Which command is used to check the version of phonegap CLI?

First, remember that the phonegap CLI has a -v argument that tells you the current version you have installed: Currently the PhoneGap site only mentions 3.0 and not anything more specific, so to compare your version to the latest in npm, you would do "npm info phonegap version".


1 Answers

For Phonegap 3 installed from NPM

sudo npm update -g  phonegap 

To check current version

phonegap -v 

To check latest version in npm

npm info phonegap version 
like image 62
Sergiy Seletskyy Avatar answered Oct 13 '22 00:10

Sergiy Seletskyy