Android App Icon

I have a PWA web app with icons specified in the manifest:

  "icons": [
    {
      "src": "nsb/images/72.png",
      "sizes": "72x72",
       "type": "image/png",
      "purpose": "any"
    },
    {
      "src": "APPICON.png",
      "sizes": "192x192",
       "type": "image/png",
      "purpose": "any"
    },
    {
      "src": "nsb/images/512.png",
      "sizes": "512x512",
       "type": "image/png",
      "purpose": "any"
    }
  ]

When I add to home screen my APPICON shows the desired app icon on the iOS home screen but android just displays a generic icon like this:
AndroidIcon

Does anyone have any suggestions how to display the APPICON

Tip : If you’re pasting code, html or config files, surround the code with triple back ticks (```), before the first line and after the last one. It will be formatted properly. (We fixed it for you this time)

  1. What version of Android are you using?

  2. Have you verified that APPICON.png is at the root level of your app?

Here is the official documentation.

Thanks George,

Sorry about posting the code incorrectly.

I’m having the same result using Android 9, 10 and 11 on different phones. APPICON.png is definitely in the root folder.

Would send me the URL of the app? DM is fine - I’d like to try it here.

Thanks George,

I seem to have solved the problem.

The APPICON file needs to be the exact size of 144 x 144 pixels. Then it works!

Yes, that is definitely important!