RJ Tubera
RJ Tubera

Reputation: 75

Expo Build, Automatically updates my live app on app store and playstore

Hi everytime I run expo:build ios my clients who has existing app also is getting my update?

Do you know how to fix this?

I want to submit to appstore first and then they update from appstore before they could get my update.

Thanks

Upvotes: 4

Views: 3415

Answers (1)

giotskhada
giotskhada

Reputation: 2452

You can add

"updates": {
   "enabled": false
}

to your app.json. At least that's how I've done it in the past. There's new expo-updates package, which gives you more control over your updates. You can check that out here.

You will have to republish your app to play store after you change your app.json.

Upvotes: 4

Related Questions