I have set a manifest.json including icon with 192x192 png and 512x512png. When I use android and add to home screen, it just use the favicon for the app icon and the splash screen icon instead of the manifest icon. The splash icon is very small, I want a bigger logo and also using the icon set in the manifest. The manifest.json have already included in the header and Chrome Developer tools successfully detected it.
{
"name": "Apple",
"short_name": "Apple",
"icons": [
{
"src": "../images/favicon/icon-192x192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "../images/favicon/icon-512x512.png",
"type": "image/png",
"sizes": "512x512"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone",
"start_url": "/apple/",
"scope": "/apple/"
}
I have tried to reinstall and clear website data many times but it remains unchanged.
Can anyone help? What is the pproblem? Thx!