Related to splash screen.

Hi everyone, i have splash screen issue . splash screen show on all pages after creating build. but it is work properly in developer mode.
using – “expo”: “^29.0.0”,
“react”: “16.3.1”,
“react-native”: “https://github.com/expo/react-native/archive/sdk-29.0.0.tar.gz”,
sdk : 29.0.0

Hey @brstdev17,

Can you share all the code relevant to how you’ve integrated the Splash API?

Cheers,

Adam

below code is my app.json file
{
“expo”: {
“name”: “app name”,
“description”: “This project is really great…”,
“slug”: “slug name”,
“privacy”: “public”,
“sdkVersion”: “26.0.0”,
“platforms”: [“ios”, “android”],
“version”: “5.0.0”,
“orientation”: “portrait”,
“icon”: “./assets/icon.png”,
“splash”: {
“image”: “./assets/splash.png”,
“resizeMode”: “cover”
},
“updates”: {
“fallbackToCacheTimeout”: 0
},
“assetBundlePatterns”: [
“**/*”
],
“ios”: {
“supportsTablet”: true,
“bundleIdentifier”: “name of bundleidentifier”,
},
“android”: {
“package”: “name of package”,
},
}
}

Hey, thanks for posting your app.json but I need to see the code where you use the AppLoading API that determines when your Splash Screen is displayed.

Now my issue has resolved… thanks for discuss my issue

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