Eventic Ticket Scanner Mobile Application
  • How it works?
  • Video demonstration
  • Setting up the application
  • Environment configuration and application deployment
  • Per organizer settings
Powered by GitBook
On this page

Was this helpful?

Environment configuration and application deployment

PreviousSetting up the applicationNextPer organizer settings

Last updated 4 years ago

Was this helpful?

This is an Ionic application, you need to have Node, NPM, Cordova and Ionic installed in your development environment.

  1. To install Node and NPM, you can use the NodeJS Installer , please make sure to choose the LTS version

  2. Open a new command line

  3. To install Ionic and Cordiva CLI: npm install -g ionic cordova

  4. Unzip the downloaded main file and locate the Eventic Scanner Mobile Application folder

  5. Open a new command line in that folder

  6. To install the node modules required by the application: npm install

  7. Depending on your needs, add the platform of your choice:

    1. ionic cordova platform add android

    2. ionic cordova platform add ios

  8. To test the application in your browser: ionic serve

  9. To test the application in a real device, enable USB debugging and Developer Mode, then run: ionic cordova run android --device

  10. To export the APK file: ionic cordova run android --prod --aot --minifyjs --minifycss

  11. To deploy your application in the Play Store or the App Store, refer to

The minimum Android SDK version supported by this application is 19, which refers to Android KitKat (4.4)

https://nodejs.org
https://ionicframework.com/docs/v3/intro/deploying/