Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

quasar : What is `Cordova id`?Where can I get it?

This is the first time I used quasar,I am creating a project with Quasar CLI following the docs (https://quasar-framework.org/guide/app-installation.html)

λ 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

The last command above told me to input Cordova id,what is Cordova id and Where can I get it?

like image 854
zwl1619 Avatar asked Sep 02 '18 08:09

zwl1619


People also ask

What is the Cordova App ID?

This is the unique identifier of your app (which is called applicationId or packageName for Android and CFBundleIdentifier for iOS).

What is Cordova Quasar?

Apache Cordova enables software programmers to build applications for mobile devices using CSS3, HTML5, and JavaScript instead of relying on platform-specific APIs like those in Android, iOS, or Windows Phone. It enables wrapping up of CSS, HTML, and JavaScript code depending upon the platform of the device.


1 Answers

This is the unique identifier of your app (which is called applicationId or packageName for Android and CFBundleIdentifier for iOS). You can find the related cordova docs here.

like image 154
David Avatar answered Sep 26 '22 06:09

David