Expo Start Stuck on Splash Screen

Hi Everyone, I am running into an issue where I am not getting any more errors, but I am unable to get past the splash screen, regardless of if it is a new app or an existing project.

I am running it on my phone using the Expo Client App via My Projects since I am signed in to the app. I am on a Google Pixel.

Here is my package.json:

{
  "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": {
    "android": "^0.0.8",
    "expo": "^34.0.1",
    "firebase": "^6.5.0",
    "react": "16.8.3",
    "react-dom": "^16.8.6",
    "react-native": "https://github.com/expo/react-native/archive/sdk-34.0.0.tar.gz",
    "react-native-status-bar-height": "^2.4.0",
    "react-native-web": "^0.11.4",
    "react-scripts": "^3.1.1"
  },
  "devDependencies": {
    "babel-preset-expo": "^6.0.0",
    "ws": "3.3.2"
  },
  "private": true
}

The CLI returns:

Logs for your project will appear below. Press Ctrl+C to exit.
Running application on Pixel.
Finished building JavaScript bundle in 2025ms.

Hi.

When you try with a new app, do you have the same dependencies?

I am not familiar with the android package, but it looks to me like maybe it should be a devDependency rather than a dependency? Also react-scripts. Actually I’m surprised to see react-scripts there at all. I thought that was more a create-react-app thing than an Expo thing.

What does expo diagnostics give you?

I am also having similar issue .
Here is my package.json:

  "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": {
    "expo": "~37.0.3",
    "react": "~16.9.0",
    "react-dom": "~16.9.0",
    "react-native": "https://github.com/expo/react-native/archive/sdk-37.0.1.tar.gz",
    "react-native-web": "~0.11.7"
  },
  "devDependencies": {
    "@babel/core": "^7.8.6",
    "babel-preset-expo": "~8.1.0"
  },
  "private": true
}

I have the same problem, the problem arises after installing “react-native-gesture-handler”, before that everything is fine and run well.
my Package.json file…

{
  "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-community/hooks": "^2.6.0",
    "expo": "~39.0.2",
    "expo-constants": "^9.2.0",
    "expo-status-bar": "~1.0.2",
    "react": "16.13.1",
    "react-dom": "16.13.1",
    "react-native": "https://github.com/expo/react-native/archive/sdk-39.0.4.tar.gz",
    "react-native-gesture-handler": "~1.7.0",
    "react-native-web": "~0.13.12"
  },
  "devDependencies": {
    "@babel/core": "~7.9.0"
  },
  "private": true
}

when i open this project in my android phone using expo, it stuck on splash screen. Even if no error on command prompt window.

Try getting the error details via running:

adb logcat