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 cordova
Unzip 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 install
Depending on your needs, add the platform of your choice:
ionic cordova platform add android
ionic cordova platform add ios
To test the application in your browser:
ionic serve
To test the application in a real device, enable USB debugging and Developer Mode, then run:
ionic cordova run android --device
To export the APK file:
ionic cordova run android --prod --aot --minifyjs --minifycss
To deploy your application in the Play Store or the App Store, refer to https://ionicframework.com/docs/v3/intro/deploying/
The minimum Android SDK version supported by this application is 19, which refers to Android KitKat (4.4)
Last updated