try { const update = await Updates.checkForUpdateAsync(); if (update.isAvailable) { await Updates.fetchUpdateAsync(); // ... notify user of update ... Alert.alert( "App Update", "A New update is available and downloaded. Please realod app now.", [ { text: "Reload Now", onPress: async () => { await Updates.reloadAsync(); }, }, ], { cancelable: false } ); } } catch (e) { console.warn(e); }