user4902588
user4902588

Reputation:

Cordova jar in android

What is the latest version of cordova for android. Please specify the link for jar file. I referred here https://cordova.apache.org/ there is no jar file.

Upvotes: 2

Views: 1827

Answers (1)

Sithys
Sithys

Reputation: 3793

Run

cordova platform version android

to check your actual android version.

  1. If you want to update your cordova cli run sudo npm update -g cordova.
  2. If you want to update your android platform only run cordova platform update android.

Latest version of cordova is 5.1.1

Latest version of android is 4.0.2

Latest version of ios is 3.8.0

You'll never find a .jar file for download on cordova.apache.org


Edited because of the comments below

As it seems not to be clear which is the current working directory i'll describe this also.

  1. cordova create testProject com.example.com testProject
  2. cd testProject
  3. cordova platform add android / ios etc...
  4. cordova plugin add cordova-plugin-pluginName
  5. cordova build

The working directroy which is needed for cordova platform version android is reached in Step 2.

Upvotes: 5

Related Questions