Environment configuration and application deployment
This is an Ionic application, you need to have Node, NPM, Cordova and Ionic installed in your development environment.
To install Node and NPM, you can use the NodeJS Installer https://nodejs.org, please make sure to choose the LTS version
Open a new command line
To install Ionic and Cordiva CLI:
npm install -g ionic cordovaUnzip the downloaded main file and locate the Eventic Scanner Mobile Application folder
Open a new command line in that folder
To install the node modules required by the application:
npm installDepending on your needs, add the platform of your choice:
ionic cordova platform add androidionic cordova platform add ios
To test the application in your browser:
ionic serveTo test the application in a real device, enable USB debugging and Developer Mode, then run:
ionic cordova run android --deviceTo export the APK file:
ionic cordova run android --prod --aot --minifyjs --minifycssTo deploy your application in the Play Store or the App Store, refer to https://ionicframework.com/docs/v3/intro/deploying/
Last updated
Was this helpful?