Why Expo publish updates app on Apple store and Play store?

Viewed 9

I have ejected app published in app store. I downloaded my app from app store in a device. And when I ‘expo publish’ ,the new update was automatically shown in my device. I am so confused. I wonder that if the local network is doing the updates or is it supposed to work like that? or how we can avoid this behaviour?

//app.json

    "updates": {
      "fallbackToCacheTimeout": 0,
      "enabled": false
    },
    
//eas.json


{
  "cli": {
    "version": ">= 0.41.1"
  },
  "build": {
    "development": {
      "developmentClient": true,
      "distribution": "internal"
    },
    "preview": {
      "distribution": "internal"
    },
    "production": {}
  },
  "submit": {
    "production": {}
  }
}

0 Answers
Related