Ionic 5 - Taxi Booking Platform with Firebase
  • Ionic 5 Taxi Complete Platform using Firebase - User, Driver Admin Apps
  • Why use this Starter
  • Setup and Deployment
    • Initial Dev Environment Setup
    • Running the App (Web Browser)
    • Deploying app as PWA
    • Building App on device
  • How to Use this Starter
    • Taxi Booking Complete Setup
    • Taxi User App - Setup
    • Taxi Driver App - Setup
    • Taxi Admin App - Setup
    • Testing Complete Platform
  • Platform Features
    • User App
    • Driver App
    • Admin App
  • Firebase Setup
    • New Firebase Project Setup
    • Firebase Integration Into User App
  • Extra
    • App Specific Requirements
    • Add More Features
    • FAQs
    • Firebase Setup (Ionic 4 Version)
    • Firebase Functions (Ionic 4 version)
      • Overview
      • Firebase Function in Code
      • How to Deploy Firebase Functions
Powered by GitBook
On this page
  • Build the app for Android
  • Build the app for iOS

Was this helpful?

  1. Setup and Deployment

Building App on device

Learn how to build the app on iOS and/or Android device

PreviousDeploying app as PWANextTaxi Booking Complete Setup

Last updated 5 years ago

Was this helpful?

Build the app for Android

Once you have modified your app as per your requirements, you can start building the app for Android. Add an android platform to the project by running

$ ionic cordova platform add android

This step will add an android platform to the project.

Now prepare the platform for a build

$ ionic cordova prepare android

And run the app on your device or simulator by running

$ ionic cordova run android

Build the app for iOS

An iOS app can be built only on an Apple based system. Add an iOS platform to the project by running

$ ionic cordova platform add iOS

This step will add an iOS platform to the project.

Now prepare the platform for a build

$ ionic cordova prepare ios

And run the app on your device or simulator by running

$ ionic cordova run ios

OR, run the app using XCode directly.

Previous step will require preinstalled on your system. You can also install Android SDK without Android Studio, but that is not the recommended way.

More information in

Previous step will require preinstalled on your system. You will also need an Apple developer license and proper provisioning profiles to build the app on device.

More information in

Android Studio
ionic documentation
Xcode
ionic documentation