- Ensure you have Node.js installed
- Ensure your project uses Expo SDK 41 or later
- Install the Expo CLI and EAS CLI
npm install -g expo-cli eas-cliOpen your terminal and navigate to your Expo project directory.
cd your-expo-projectMake sure you are logged into your Expo account.
expo loginRun the following command to configure your project for EAS Build.
eas build:configureUse the EAS CLI to start a new build for the Android platform. This command will prompt you for some additional information, such as your Android package name.
# Create aab file for PlayStore
eas build --platform android
# create apk
eas build -p android --profile previewYou can monitor the build process in your terminal or visit the Expo build page provided in the terminal output.
Once the build is complete, you will receive a URL where you can download the APK file.
If you encounter issues during the build process, consult the Expo documentation or seek help from the Expo community.