Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 959 Bytes

rider-setup.md

File metadata and controls

36 lines (23 loc) · 959 Bytes

Rider App Setup

Update Firebase Rules

  • Navigate to driver/src/environments/environment.prod.ts
  • update your firebase configurations
  • Update your Google maps api & stripe public key with rider/src/index.html

Running Rider App

cd rider
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 53705 --livereload-port 35740 --port 8300

To generate apk

ionic cordova platform add [email protected]
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