9

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?

zwl1619
  • 4,002
  • 14
  • 54
  • 110

1 Answers1

9

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.

David
  • 7,387
  • 3
  • 22
  • 39