Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 943 Bytes

driver-setup.md

File metadata and controls

31 lines (22 loc) · 943 Bytes

Driver App Setup

Updating Firebase Configurations

  • Navigate to driver/src/environments/environment.prod.ts
  • update your firebase configurations
  • Update your Google API key with driver/src/index.html

Run Driver App

cd driver
npm install
ionic serve

Note: If Ionic serve is not working, you can also execute following command (update ports as your wish)

ionic serve --dev-logger-port 53704 --livereload-port 35730 --port 8200

To generate apk

ionic cordova platform add android@7.0.0
ionic cordova build android

Execute ionic cordova resources before you build, if you faced any issue with icons or image not found

Common mistakes

  • Update Google API Key with Driver App
  • Add Geolocation plugin & whitelist plugin (if it didn't added automatically)
    ionic cordova plugin add cordova-plugin-geolocation
    ionic cordova plugin add cordova-plugin-whitelist