任意のタイミングでアプリを再起動したいことがあります。expo-updatesを使うと再起動できます。
インストール
expo install expo-updates
使い方
事前準備
restart.js
を下記の内容で作成します。
import * as Updates from 'expo-updates'
const Restart = () => {
Updates.reloadAsync()
}
export { Restart }
再起動方法
import { Restart } from './restart'
const ourFunction = () => {
Restart()
}