to select ↑↓ to navigate
Developer References

Developer References

Open in ChatGPT
Ask ChatGPT about this page
Open in Claude
Ask Claude about this page

Developing with Apache Cordova

Developing with Cordova

Using Cordova CLI

Create App

$ cd path/to/projects $ cordova create cordova-helloworld com.example.helloworld HelloWorld

Add Platform

$ cd cordova-helloworld

Add Web Browser Platform:

$ cordova platform add browser

Add iOS:

$ cordova platform add ios

Add android:

$ cordova platform add android

TODO:

 <preference name="android-minSdkVersion" value="22">
 <preference name="android-targetSdkVersion" value="30">
 <preference name="android-compileSdkVersion" value="30">
Last updated 2 months ago
Was this helpful?
Thanks!