Right here is my app.json:
{
"expo": {
"title": "SignLingo",
"slug": "SignLingo",
"model": "1.0.0",
"orientation": "portrait",
"icon": "./property/pictures/icon.png",
"scheme": "myapp",
"userInterfaceStyle": "computerized",
"newArchEnabled": true,
"splash": {
"picture": "./property/pictures/splash.png",
"resizeMode": "comprise",
"backgroundColor": "#fefaf4"
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.nameless.SignLingo"
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./property/pictures/adaptive-icon.png",
"backgroundColor": "#ffffff"
},
"package deal": "com.nameless.SignLingo"
},
"internet": {
"bundler": "metro",
"output": "static",
"favicon": "./property/pictures/favicon.png"
},
"plugins": [
"expo-router",
[
"expo-splash-screen",
{
"image": "./assets/images/splash-icon.png",
"imageWidth": 200,
"resizeMode": "contain",
"backgroundColor": "#ffffff"
}
]
],
"experiments": {
"typedRoutes": true
}
}
}
That is my ./property/pictures/icon.png
That is my ./property/pictures/splash.png
Each ./property/pictures/icon.png and ./property/pictures/splash.png are current and the app icon shows as anticipated.
Nonetheless my Splash display screen shows ./property/pictures/icon.png as an alternative of ./property/pictures/splash.png
The background shade “#fefaf4” is right however I am seeing ./property/pictures/icon.png as an alternative of ./property/pictures/splash.png
Why and easy methods to get splash picture to indicate appropriately on splash display screen?
I’ve already tried working npx expo prebuild --clean
after which npx expo prebuild
however that does nothing.