我想更改我的应用程序图标。我试过改变它,但应用程序图标(已经添加到主屏幕或安装在应用程序抽屉上)没有改变。
这是我的 manifest.json
{
"short_name": "React App",
"name": "Create React App Sample",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
},
{
"src": "react.png",
"sizes": "144x144",
"type": "image/png"
}
],
"start_url": "./index.html",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
}
我更改了 144x144 大小的名称和图标,但什么也没发生。
用户添加到主屏幕后,我可以更改应用程序图标吗?
我读过Tip: Icons may be cached, so it may be helpful to change the filenames when updating icons or other graphics.
但等了 24 小时,图标直到现在才改变。