Eas Update does not publish any new Expo Updates

4.3k Views Asked by At

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.

2

There are 2 best solutions below

3
On BEST ANSWER

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.

0
On

We had the same issue. Updates worked fine but after some update it stopped working. Adding the runtimeVersion did the thing for us:

// app.json
{
  "expo": {
    "runtimeVersion": {
      "policy": "nativeVersion"
    }
  }
}