How can I specify cordova android version in config.xml?

Viewed 4628
1 Answers

This is done using the <engine> tag:

<engine name="android" spec="^6.3.0" />
<engine name="ios" spec="~4.5.1" />
<engine name="browser" spec="latest" />

You can find the docs for it here.

Related