Using Chrome 69 for Android and Windows, I am having problems with the splash screen. While running on Windows as a standalone app, it appears to have no splash screen concept at all (I wish that were documented), but I am more concerned that my android PWA shows a splash screen without the icons configured in my manifest. The splash background is correct, and the app name is displayed... just no image.
I have both 192x192 and 512x512 images. When I run a Lighthouse audit I get 100 on every point, except for the insidious "Content is not sized correctly for the viewport" failure.
Both images show up in Chrome/Dev Console/Application/Manifest/Icons and my 192x192 is used correctly as an app icon for both Windows and Android.
Here is my example: https://bpetty-formfast.github.io/PWA-v1
I tried using 192x192 by itself, then I added 512x512 without any luck. What am I missing?
"icons": [{
"src": "Logo-192x192.png",
"sizes": "192x192",
"type": "image/png"
},{
"src": "Splash-512x512.png",
"sizes": "512x512",
"type": "image/png"
}],
Update: Not a duplicate of: Can't get splash screen icon on Android Chrome PWA
See the accepted answer for more information.