Eas Update does not publish any new Expo Updates

Viewed 845

I'm using EAS for configuring updates. The update isn't working. I tried the eas update command and got the result as well:

✔ Linked to project @team/something
✔ Please enter an update message. … test
✔ Built bundle!
✔ Uploaded assets!
✔ Published!

Then, running eas update:list also, shows the list and all the group IDs. But on opening/closing the Android app, no updates are detected.

1 Answers

The reason for my problem was the issue with the SDK version not set correctly. It needed to be configured in app.json itself. In my case I solved it by adding:

"sdkVersion": "44.0.2",

to the app.json file.

Related