React Native stuck on Splash Screen - iOS

I have an app that was working fine with expo build:ios -t archive

since I updated to that they do not accept the application in ios. The apple team tells me that the application does not go beyond the welcome screen. This since I update and compile with eas. Any solution? I don’t know what to do, I’ve tried everything.

{
  "name": "apolo-movil",
  "version": "1.0.0",
  "main": "node_modules/expo/AppEntry.js",
  "scripts": {
    "start": "expo start",
    "android": "expo start --android",
    "ios": "expo start --ios",
    "web": "expo start --web",
    "eject": "expo eject"
  },
  "dependencies": {
    "@react-native-async-storage/async-storage": "^1.17.7",
    "@react-native-community/datetimepicker": "^6.2.0",
    "@react-navigation/bottom-tabs": "^6.3.2",
    "@react-navigation/drawer": "^6.4.3",
    "@react-navigation/material-top-tabs": "^6.2.2",
    "@react-navigation/native": "^6.0.11",
    "@react-navigation/native-stack": "^6.7.0",
    "@rneui/base": "^4.0.0-rc.5",
    "@rneui/themed": "^4.0.0-rc.5",
    "expo": "~45.0.0",
    "expo-barcode-scanner": "~11.3.0",
    "expo-blur": "~11.1.0",
    "expo-constants": "~13.1.1",
    "expo-font": "~10.1.0",
    "expo-image-picker": "^13.1.1",
    "expo-splash-screen": "~0.15.1",
    "expo-status-bar": "~1.3.0",
    "expo-updates": "~0.13.3",
    "moment": "^2.29.4",
    "react": "17.0.2",
    "react-dom": "17.0.2",
    "react-native": "0.68.2",
    "react-native-dropdown-picker": "^5.4.2",
    "react-native-gesture-handler": "~2.2.1",
    "react-native-keyboard-aware-scroll-view": "^0.9.5",
    "react-native-pager-view": "5.4.15",
    "react-native-popup-menu": "^0.15.12",
    "react-native-reanimated": "^2.8.0",
    "react-native-safe-area-context": "4.2.4",
    "react-native-screens": "~3.11.1",
    "react-native-snap-carousel-v4": "^1.0.1",
    "react-native-svg": "^12.4.0",
    "react-native-tab-view": "^3.1.1",
    "react-native-toast-notifications": "^3.3.0",
    "react-native-web": "0.17.7",
    "react-native-webview": "^11.22.7",
    "react-native-xml2js": "^1.0.3"
  },
  "devDependencies": {
    "@babel/core": "^7.12.9"
  },
  "private": true
}

Hey @apolo-app, did you try running the project locally in production mode to see if you get more info about the problem with the following command:

expo start --no-dev --minify

Also, check the device logs.

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