Expo auto updates for new app store versions

Please provide the following:

  1. SDK Version:
    Running SDK 45
  2. Platforms(Android/iOS/web/all):
    Android and iOD
  3. Add the appropriate “Tag” based on what Expo library you have a question on.

I have automatic OTA expo updates setup in my app and they seem to be working really well. Is it also possible to have updates that were submitted via the App Store (eg, SDK updates) to auto update when the user opens the app? Currently it seems my setup below is not working for app store updates and only OTA updates.

        if (channel === 'production') {
            const update = await Updates.checkForUpdateAsync();

            if (update.isAvailable) {
                await Updates.fetchUpdateAsync();
                await Updates.reloadAsync();
            }
        }

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.