I have an app on qml and using appstudio u can put the launch image in the resources settings.but i want to remove that because i want to use more than one image so i have created a page to generate a splash screen.Now its possible to disable that functionality from appstudio??
Solved! Go to Solution.
Mobile apps need a splash screen by design. If you do not want to display anything specific make sure the splash screen image and overlay property is empty in appinfo.json in your app.
"resources": {
"appIcon": "assets/images.png",
"launchImageBackground": "",
"launchImageBackgroundColor": "#ffffff",
"launchImageOverlay": ""
},
Mobile apps need a splash screen by design. If you do not want to display anything specific make sure the splash screen image and overlay property is empty in appinfo.json in your app.
"resources": {
"appIcon": "assets/images.png",
"launchImageBackground": "",
"launchImageBackgroundColor": "#ffffff",
"launchImageOverlay": ""
},
i have tried that but then it grabs the app icon and create a splash screen with that automatically and infact i want to not display the spash screen at all
As Sathya mentioned you must have a splash screen. Why not just put a simple transparent image in? That way it has a reference but won't show a pic
Hi Sathya,
I have the opposite problem. I want my lunchimagebackground to show up, but it doesn't. My appinfo.json shows the correct information and while testing the app on the appstudio player the background image appear. But when I make it a stand-alone app (cloud make), the background app's launch image doesn't appear.
Any ideas about the source of the issue?
Thanks,
Carlos Carvalho