Attempt to invoke interface method 'void com.facebook.react.uimanager.ViewManagerDelegate......
Hi i am chethan i am facing the same issue i turend my application to prebuild it runs fine in expo Go but when i run run:android i am facing this error can any one tell me how can i fix it ------
This is my package.json { "name": "bolt-expo-starter", "main": "expo-router/entry", "version": "1.0.0", "private": true, "scripts": { "dev": "EXPO_NO_TELEMETRY=1 expo start", "build:web": "expo export --platform web", "lint": "expo lint", "android": "expo run:android", "ios": "expo run:ios" }, "dependencies": { "@expo/vector-icons": "^14.1.0", "@lucide/lab": "^0.1.2", "@react-navigation/bottom-tabs": "^7.2.0", "@react-navigation/native": "^7.0.14", "expo": "^53.0.0", "expo-blur": "~14.1.3", "expo-camera": "~16.1.5", "expo-constants": "~17.1.3", "expo-font": "~13.2.2", "expo-haptics": "~14.1.3", "expo-linear-gradient": "~14.1.3", "expo-linking": "~7.1.3", "expo-router": "~5.0.2", "expo-splash-screen": "~0.30.6", "expo-status-bar": "~2.2.2", "expo-symbols": "~0.4.3", "expo-system-ui": "~5.0.5", "expo-web-browser": "~14.1.5", "lucide-react-native": "^0.475.0", "react": "19.0.0", "react-dom": "19.0.0", "react-native": "0.79.1", "react-native-gesture-handler": "~2.24.0", "react-native-reanimated": "~3.17.4", "react-native-safe-area-context": "5.3.0", "react-native-screens": "~4.10.0", "react-native-svg": "15.11.2", "react-native-url-polyfill": "^2.0.0", "react-native-web": "^0.20.0", "react-native-webview": "13.13.5" }, "devDependencies": { "@babel/core": "^7.25.2", "@types/react": "~19.0.10", "typescript": "~5.8.3" } }
And this is my app.json
{ "expo": { "name": "bolt-expo-nativewind", "slug": "bolt-expo-nativewind", "version": "1.0.0", "orientation": "portrait", "icon": "https://images.pexels.com/photos/1118448/pexels-photo-1118448.jpeg?auto=compress&cs=tinysrgb&w=512&h=512&dpr=1", "scheme": "myapp", "userInterfaceStyle": "automatic", "newArchEnabled": false, "ios": { "supportsTablet": true, "bundleIdentifier": "com.chethan2527.boltexponativewind" }, "android": { "package": "com.chethan2527.boltexponativewind" }, "web": { "bundler": "metro", "output": "single", "favicon": "https://images.pexels.com/photos/1118448/pexels-photo-1118448.jpeg?auto=compress&cs=tinysrgb&w=64&h=64&dpr=1" }, "plugins": ["expo-router", "expo-font", "expo-web-browser", "expo-camera"], "experiments": { "typedRoutes": true } } }
Please let me know how can i fix it