Expo Build stucks in splash screen

Hello everyone, I guess this will be an easy question for you but I am very new to expo.

I made a small app it works fine in debugging mode but the spashscreen never disappears after build.
Its very simple, I commented out a lot. Here Is my code from App.js

import React from 'react';
// import { Platform, StatusBar, StyleSheet, View } from 'react-native';
// import { AppLoading, Asset, Font, Icon } from 'expo';
// import AppNavigator from './navigation/AppNavigator';
import TimeTableScreen from './screens/TimeTableScreen';

export default class App extends React.Component {
  // state = {
  //   isLoadingComplete: false,
  // };

  render() {
    return(
      <TimeTableScreen />
    )
  }

And if helpfull here the json:

{
  "expo": {
    "name": "WA",
    "slug": "WA",
    "privacy": "public",
    "sdkVersion": "31.0.0",
    "platforms": [
      "ios",
      "android"
    ],
    "version": "1.0.0",
    "orientation": "portrait",
    "icon": "./assets/images/icon.png",
    "splash": {
      "image": "./assets/images/splash.png",
      "resizeMode": "contain",
      "backgroundColor": "#ffffff"
    },
    "updates": {
      "fallbackToCacheTimeout": 0
    },
    "assetBundlePatterns": [
      "**/*"
    ],
    "ios": {
      "supportsTablet": true,
      "bundleIdentifier": "com.yourcompany.yourappname"
    },
    "android": {
      "package": "com.jueruss.jueruss_wa"
    }
  }
}

Would you please tell me how I can bypass the splash.png after build? From my perspective I never render it lol. Thank you very much

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