Your builds are failing during the "Prepare project" phase with an "Unknown error".
c00a17a8-ea14-44bd-815c-94688119bf3e38091b61-fe35-410f-b598-4d6fb595a3d5e504d834-8838-42e7-b28a-67f6209e72b40b555683-33b0-4c87-b423-be2735efdef0
-
Visit your builds page: https://expo.dev/accounts/reetkumarbind/projects/ReetPortfolioApp/builds
-
Click on the latest failed build
-
Look for the "Prepare project" phase logs
-
Check for specific error messages
Problem: React 19 is very new and might have compatibility issues with some Expo packages.
Solution: Downgrade to React 18
npm install react@18.2.0 react-dom@18.2.0
npm install @types/react@18.2.0Problem: New Architecture might not be fully compatible with all dependencies.
Solution: Already disabled in app.json ✅
Problem: Some packages might have version conflicts.
Solution: Clean install
rm -rf node_modules package-lock.json
npm installProblem: Cached files causing issues.
Solution: Clear all caches
npx expo start --clear
npm run build:android:previewProblem: eas.json might need adjustment.
Solution: Try with simpler configuration
Visit the build URL and look for specific error messages in the "Prepare project" phase.
# Downgrade React
npm install react@18.2.0 react-dom@18.2.0 @types/react@18.2.0
# Rebuild
eas build -p android --profile previewRemove optional dependencies temporarily:
npm uninstall react-native-worklets
eas build -p android --profile previeweas build -p android --profile developmentIf all else fails, share your build logs with Expo support:
- Forums: https://forums.expo.dev/
- Discord: https://chat.expo.dev/
Look for these keywords:
- ❌
Error: - ❌
Failed to - ❌
Cannot find - ❌
Module not found - ❌
Dependency - ❌
Version
If EAS Build continues to fail, you can build locally:
npx expo prebuild
# Then open in Android Studio and buildeas build --local -p android --profile previewnpx expo install --fixrm eas.json
eas init
eas build -p android --profile previewCreate a backup and try with minimal configuration:
{
"expo": {
"name": "ReetPortfolioApp",
"slug": "ReetPortfolioApp",
"version": "1.0.0",
"android": {
"package": "com.reetkumarbind.ReetPortfolioApp"
},
"extra": {
"eas": {
"projectId": "a2b71274-3fd7-4f9c-90df-9751646a744a"
}
}
}
}# List all builds
eas build:list
# View specific build
eas build:view [BUILD_ID]
# Cancel running build
eas build:cancel- Check build logs at expo.dev
- Copy the error message
- Search Expo forums for similar issues
- Ask in Discord with build ID and error
- ✅ Visit: https://expo.dev/accounts/reetkumarbind/projects/ReetPortfolioApp/builds
- ✅ Click on latest failed build
- ✅ Read "Prepare project" phase logs
- ✅ Copy error message
- ✅ Try React 18 downgrade (most likely fix)
Most Common Fix: Downgrade to React 18
npm install react@18.2.0 react-dom@18.2.0 @types/react@18.2.0
eas build -p android --profile preview