-
Notifications
You must be signed in to change notification settings - Fork 84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
EAS project not configured. #1426
Comments
I'm experiencing a similar issue as well although it is with the eas build command The gitlab CI pipeline that was working a month ago is now suddenly failing a few days back (last checked) prompting the "EAS project not configured" error. Here's my gitlab CI file:
My eas.json file:
The error I am getting on my pipeline: Hope @brentvatne could assist on this. Also I'm sorry if I'm latching on @widjesh 's issue as I thought it would be relevant - as from my pov it seems like it's the same root cause. I am fine submitting this as a separate issue if needed. |
I'm having this same issue running on GitHub actions |
Hey Guys, Just make sure you add this in your app.config.js extra: { This should resolve the issue. Not sure what caused this to be honest. Let me know should you need any more information. |
This helped me. Thank you @widjesh |
Glad it worked for you.Good luck on your development |
Where can I find my project id? |
I can confirm that this is a working solution for me too. I had to extend the values from my app.json and put in the app.config.js file and fill in the slug for my project to make it work. Thanks @widjesh ! Here's a snippet of a working example (app.config.js):
|
@Lester016 Find your project ID in your expo web portal (www.expo.dev). |
this fixed me out, thank you ! |
You should run |
@dsokal The eas was already initialized at the time this issue occurred. I have added the fix that worked for me and for some of the other devs. Thank you |
Resolved by steps:
|
any update on what changed causing this break? |
Some have |
I also ran into this issue very recently. The
Not sure how this is happening but @juanjorge suggestion fixed this for me Please consider re-opening this issue. The FYI article this error links to is quite unhelpful the the solution is very non-intuitive. Took me several hours to figure out what was happening. Seems that there is a bug in eas when it comes to extracting this slug out of wherever it is extracted from. |
Does anyone already figure out how this can be fix i also ran into this issue |
@henrymoulton can you please open a new issue with all the details? My intuition tells me this is not related to the original issue. It'd be super helpful if you could take new screenshots with more details visible. In particular, could you expand "Run eas update..." from: |
Just in case this helps anyone, remember to specify the directory if you are working in a monorepo (ie. if your Expo project root is not the same as your repository's root). This issue, albeit silly, will result in the same symptoms. Changing - name: 📦 Install dependencies
run: yarn install
- name: 🚀 Build app
run: eas build -e preview -p android --non-interactive to - name: 📦 Install dependencies
working-directory: ./app
run: yarn install
- name: 🚀 Build app
working-directory: ./app
run: eas build -e preview -p android --non-interactive was the solution for us. |
Build/Submit details page URL
No response
Summary
When I execute the following command on my local machine:
eas update --message "bbbb1124232c2e24aeea2de822541fbbe599e1c0" --branch "development"
Everything works as expected, but the same command is being triggered through my Circle CI pipeline, but on that platform I am getting the following response:
EAS project not configured.
? Existing EAS project found for @************/Satyam-Tours (id = e3cbfdf1-eb35-41fe-**********). Configure this project? › (Y/n)��
Since this is a Pipeline build I am not able to select Y or N.
Can someone help me resolve this issue ?
This worked fine for the last 3 months. Not sure what suddenly happened
Managed or bare?
Managed
Environment
✖ Dependency tree validation for expo-modules-autolinking failed. This validation is only available on Node 16+ / npm 8.
✖ Dependency tree validation for @expo/config-plugins failed. This validation is only available on Node 16+ / npm 8.
✖ Dependency tree validation for @expo/prebuild-config failed. This validation is only available on Node 16+ / npm 8.
✖ Dependency tree validation for @unimodules/core failed. This validation is only available on Node 16+ / npm 8.
✖ Dependency tree validation for @unimodules/react-native-adapter failed. This validation is only available on Node 16+ / npm 8.
✖ Dependency tree validation for react-native-unimodules failed. This validation is only available on Node 16+ / npm 8.
Some dependencies are incompatible with the installed expo package version:
Your project may not work correctly until you install the correct versions of the packages.
To install the correct versions of these packages, please run: expo doctor --fix-dependencies,
or install individual packages by running expo install [package-name ...]
Error output
No response
Reproducible demo or steps to reproduce from a blank project
Not sure how to answer this question.
The text was updated successfully, but these errors were encountered: