diamonds-4Installation

circle-info

bullhorn NOTE : Before launching the app, ensure you have correctly set up the ADMIN LARAVEL and have added all necessary data through the admin panel.

If React Native isn’t yet installed on your system, follow this link to get started: https://reactnative.dev/docs/set-up-your-environmentarrow-up-right

1. SDK Version :


To integrate Taxido into your project, you'll need to make the following adjustments :

React Native (v0.82.1)

  1. You need React Native v0.82.1 (Stable Channel)

  2. To install React Native, follow the instructions at the https://reactnative.dev/docs/set-up-your-environmentarrow-up-right (Windows, macOS, etc.) provided at the link below.https://reactnative.dev/docs/set-up-your-environmentarrow-up-right

2. React Native Installation :

  • Install React Native CLI :

    • Install React Native CLI globally :

    npm install -g react-native-cli

    files-o

  • Create a New React Native Project :

  • Create a new project :

  • Navigate to the Project Folder :

    files-o

  • Install Dependencies :

    • Install Android required libraries :

    files-o

    • Install iOS required libraries :

  • Run the Project :

    • To run the app on Android :

    files-o

    • To run the app on Android in debug mode:

    files-o

    • To run the app on iOS (macOS only) :

    files-o

    • For iOS, make sure to run:

3. React Native Installation in Visual Studio:

  • Start Visual Studio and install the required dependencies, including Windows Desktop Development and C++ Desktop Development tools, for React Native development.

  • After completing the installation, ensure that you have Visual Studio configured for React Native development.

  • Verify Dependencies: Use the following command in your terminal to see if your React Native configuration is missing any dependencies :

    files-o

4. React Native Installation in Android Studio :

  • Start Android Studio, then install the required apps, such as the Android SDK and Android Emulator.

  • After installation, you may run and debug your React Native application on an emulator or connected device using Android Studio.

  • Verify Dependencies: After setting up Android Studio, you can check for any missing dependencies by running the following command :

5. React Native Dependencies Setup (Node.js, NPM, and CLI):

Note: Use the instructions below to set up Node.js or other dependencies for React Native.

1. Windows Setup:

  1. Open Command Prompt:

    • Press Windows Key + R, type cmd, and press Enter.

  2. Install Node.js (LTS) using Chocolatey

    • If Chocolatey is installed, run:

  3. Verify Installation

    • Run the following commands to check the installed versions:

    • The command above will return the installed version of Node.js. For React Native, it is recommended to use Node.js 22x or Above for compatibility.

  4. Install Node Version Manager (nvm) for Window

    • Download the nvm-setup.ziparrow-up-right file from the official GitHub repository.

    • Run the nvm-setup.exe to install nvm on your system.

  5. Verify nvm Installation:

    • Run the following command to verify the nvm installation:

  6. Add and Install a Specific Node.js Version using nvm:

    • To install a specific version of Node.js (e.g., Node.js 22.11.0), run the following command:

    • Replace 18.0.0 with your desired version number.

    • Once the installation is complete, use the following command to switch to the newly installed version:

    • Verify that the correct version of Node.js is active by running:

2. Linux Setup (Ubuntu/Debian-based distros)

  1. Update Package List

    • Open a terminal and run:

  2. Install Node.js and npm

    • Run the command :

  3. Verify Installation

    • Check the installed versions

3. macOS Setup

  1. Install Node.js and npm using Homebrew

    • Open Terminal and run :

  2. Verify Installation

    • Check the installed versions :

Install React Native CLI & Setup a New Project

  1. Create a New React Native Project (Without Expo)

    • Run the command :

    • This ensures you always use the latest React Native CLI.

  2. Navigate to the Project Directory

    • Change into the newly created project folder :

  • Running the React Native App

    • For Android Run :

    • To run the app on Android in debug mode:

    files-o

    • Important Notes

      • React Native CLI is built into npx, so you don’t need to install it globally.

      • EnsureJava JDK & Android SDK are installed for Android development.

Last updated