1. Home
  2. Docs
  3. Ionic Firebase Taxi App Setup
  4. Rider App

Rider App

Step 1: 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

Step 2: 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 android@8.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