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

Driver App

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

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