Geliştirici gereksinimlerine (yarn add --dev @expo/metro-runtime) @expo/metro-runtime ekleyin ve bunu uygulama giriş dosyanızın başına ekleyin, ör. index.js.
Örnek AppEntry dosyasi kullandığınız appentry dosyası özel deilse .\node_modules\expo\AppEntry.js şeklinde ya da expo router için .\node_modules\expo-router içerisinde app entry dosyanızı bulabilirsiniz.
import "@expo/metro-runtime";
import { registerRootComponent } from "expo";
import App from "./App";
// registerRootComponent calls AppRegistry.registerComponent('main', () => App);
// It also ensures that whether you load the app in Expo Go or in a native build,
// the environment is set up appropriately
registerRootComponent(App);