Reputation: 75
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
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