Unexpected behaviour of splash screen

Hi,
Sometimes I am getting this while opening an app.

my app.json configuration is:
“expo”: {
“name”: “xxx”,
“description”: “xxx”,
“slug”: “xxx”,
“scheme”: “xxx”,
“privacy”: “public”,
“sdkVersion”: “27.0.0”,
“platforms”: [“android”, “ios”],
“version”: “2.1.6”,
“orientation”: “portrait”,
“splash”: {
“image”: “./assets/splash.png”,
“resizeMode”: “cover”,
“backgroundColor”: “#ffffff
},
}

is something i am missing here?

Are you using an AppLoading component or something like that?
It might be that whatever you are doing during that step doesn’t complete successfully and the app is never set as loaded.

It’s hard to tell without seeing more of your code.
Does this happen only on Android or also on iOS?

yes i am using AppLoading component and this is happening in android only.

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