What is `Cordova id`?Where can I get it?
-
What is
Cordova id
?Where can I get it?λ quasar init quasar_demo Running command: vue init 'quasarframework/quasar-starter-kit' quasar_demo ? Project name (internal usage for dev) quasar_demo ? Project product name (official name) Quasar App ? Project description A Quasar Framework app ? Author ? Check the features needed for your project: ESLint, Vuex, Axios, Vue-i18n, IE11 support ? Pick an ESLint preset Standard ? Cordova id (disregard if not building mobile apps) org.cordova.quasar.app
-
Hi @kanjiushi Apache Cordova is an open-source mobile development framework. It allows you to use standard web technologies - HTML5, CSS3, and JavaScript for cross-platform development. Applications execute within wrappers targeted to each platform, and rely on standards-compliant API bindings to access each device’s capabilities such as sensors, data, network status, etc.
https://cordova.apache.org/docs/en/latest/guide/overview/index.html
-
Where can I get it?
I think I answered this on Discord. The cordova id is a reverse domain you create yourself or rather, where you’ll put your app later. Something like “org.my-cool-site.app”.
Scott
-
The way it used to be was a namespace for your company and app name. So if my company’s name was Acme and the app is “Delivery Box”, I’d probably enter
com.acme.delivery-box
. Digging around in the documentation I found this:cordova create myapp com.mycompany.myteam.myapp MyApp
on this page: https://cordova.apache.org/docs/en/9.x/reference/cordova-cli/index.html#directory-structure.