We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Icons should be an array in Manifest.json file Instead of the following code
"icons": { "512": "/activity/activity-icon-color-512.png", "128": "/activity/activity-icon-color-128.png" },
the code should be this
"icons": [ { "src": "/activity/activity-icon-color-512.png", "sizes": "512x512", "type": "image/png" }, { "src": "/activity/activity-icon-color-128.png", "sizes": "128x128", "type": "image/png" } ],
The text was updated successfully, but these errors were encountered:
@walterbender can I take this issue?
Sorry, something went wrong.
sure.
Can you please include a link to the manifest format documentation too?
@walterbender here is the link to manifest format documentation
Successfully merging a pull request may close this issue.
Icons should be an array in Manifest.json file
Instead of the following code
the code should be this
The text was updated successfully, but these errors were encountered: