简体   繁体   中英

What's wrong with my manifest.json

I'm trying to add a manifest.json to my web app (made in php) so the users can add it to their homescreen.

Here's my manifest json:

{
  "name": "OrganizaMeuCasamento",
  "short_name": "MeuCasamento",
  "theme_color": "#995a6d",
  "background_color": "#000000",
  "orientation": "portrait",
  "display": "fullscreen",
  "start_url": "https://meucasamento.organizaeventos.net",
  "icons": [
    {
      "src": "logopwa.png",
      "sizes": "70x70",
      "type": "image/png"
    }
    {
    "src": "icon-256x256.png",
    "sizes": "256x256",
    "type": "image/png"
    }
  ]
}

I linked it on my index.php but on my GoogleDevTools it doesn't get recognized. What have I done wrong? It's a error on manifest.json itself or on the link on index.php

here is the link: meucasamento.organizaeventos.net

image of GoogleDevTools googledevtools-NO-清单检测到的

{
  "name": "OrganizaMeuCasamento",
  "short_name": "MeuCasamento",
  "theme_color": "#995a6d",
  "background_color": "#000000",
  "orientation": "portrait",
  "display": "fullscreen",
  "start_url": "https://meucasamento.organizaeventos.net",
  "icons": [
    {
      "src": "logopwa.png",
      "sizes": "70x70",
      "type": "image/png"
    },
    {
    "src": "icon-256x256.png",
    "sizes": "256x256",
    "type": "image/png"
    }
  ]
}

you forgot one , inside your icon array. Now it should work if you use the good tag inside your html

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM