Android
Android Development Environment Setup
NOTE :\ Before launching the app, ensure you have correctly set up the ADMIN LARAVEL and have added all necessary data through the admin panel.
Android Development Setup
Follow these steps to ensure the Android development environment is correctly set up:
Install Java Development Kit (JDK)
Install JDK 17 or later to support Android development. Download it from the official Oracle site:
Install Android Studio
Download and install the latest stable version of Android Studio (recommended: Android Studio Giraffe for 2025 or Android Studio Flamingo for 2024). You can download the appropriate version based on your system from the links below:
Set Up Android SDK
Ensure that you have the Android SDK installed. You can check and install it in Android Studio by going to File > Settings > System Settings > Android SDK.
Install Specific Node.js, npm, and nvm Versions
For React Native and other development tools, you'll need to install Node.js, npm, and nvm (Node Version Manager). Here's how to set them up:
Install Node Version Manager (nvm):
Download the nvm-setup.zip for Windows from the official GitHub repository, and run the
nvm-setup.exeto install nvm.Install a Specific Version of Node.js :
The project requires a minimum Node.js version of 20. To install a specific version, such as Node.js v20, run the following command. For example, to install **Node.js v20** or Node.js v22** run:
node --versionv20.x.x , v22.x.xspecific version of nvm :
nvm install 0.39.7Install Specific npm Version:
If you want to install a specific version of npm, run the following command after installing Node.js. For example, to install **npm v10.9.2**, run:
npm install -g npm@10.9.2Verify Specific Node.js and npm Versions:
After installation, verify that Node.js and npm are correctly installed by running these commands:
node -vThis will display the installed Node.js version (e.g., v20.11.0).
npm -vThis will display the installed npm version (e.g., 10.9.2).
React Native Project with Specific Version
Follow these steps to create a new React Native project using a specific version (e.g., version 0.77.1):
Project with Specific Version
Run the following command to create a new React Native project with version 0.77.1 :
npx react-native0.77.3 init MyReactNativeAppVerify React Native Version
To verify the React Native version installed in your project, use the following command:
npm ls react-native
6. Kotlin Version Setup
Set Kotlin version in
android/build.gradle:
kotlinVersion = "2.0.21"Enable New Architecture:
newArchEnabled=true
Last updated