Reputation:
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
Reputation: 3793
Run
cordova platform version android
to check your actual android version.
sudo npm update -g cordova
. 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.
cordova create testProject com.example.com testProject
cd testProject
cordova platform add android / ios etc...
cordova plugin add cordova-plugin-pluginName
cordova build
The working directroy which is needed for cordova platform version android
is reached in Step 2.
Upvotes: 5