- Install latest node(https://nodejs.org/en/)
download latest node https://nodejs.org/en/- Install TypeScript
npm install -g typescript- Install latest ionic and cordova
npm install -g cordova ionic- Navigate to your project
cd /ionic-fing- Install NPM Dependencies
npm install- Install iOS or Android platforms(commands are renamed)
ionic cordova platform add ios
ionic cordova platform add android- Install the FingKit plugin(commands are renamed)
ionic cordova plugin add ./fingkit- Go to src/app/app.component.ts
- replace FING_API_KEY with fing API Key
window.fing.validateLicenseKey("FING_API_KEY", "",
(result) => {
console.log('Licence OK: ' + result);
}, (error) => {
console.log(error);
});- Launch in browser
ionic serve- Launch in Simulator
ionic cordova run ios --livereload- Build for the target platforms
ionic cordova build ios
ionic cordova build android