iOS and Android Setup

This guide covers setting up the mobile applications for iOS and Android using Capacitor.

Prerequisites

Make sure you have completed the initial setup first.

Setup Instructions

  1. Install the latest packages

    npm i
    
  2. Build the application

    npm run build
    
  3. For the first time, generate ios and android folder:

    For iOS:

    npm run capacitor:add:ios
    

    For Android:

    npm run capacitor:add:android
    
  4. Generate assets:

    npm run capacitor:assets:generate:ios
    
  5. Sync the files

    npm run capacitor:sync
    
  6. Open the App

    For iOS:

    npm run capacitor:open:ios
    

    For Android:

    npm run capacitor:open:android