BanditoBunny
BanditoBunny

Reputation: 3896

Installable web app does not use icons while being installed on android

I am deploying an installable web app with web manifest and icon images are not being used when installed on Android (I have not tried other platforms).

I am following this guide: https://developers.google.com/web/updates/2014/11/Support-for-installable-web-apps-with-webapp-manifest-in-chrome-38-for-Android?hl=en

My system parameters:

Manifest.json

{
 "name": "Test app",
 "icons": [
  {
    "src": "icon-1x.png",
    "sizes": "48x48",
    "type": "image/png",
  }, ...

Upvotes: 2

Views: 463

Answers (1)

BanditoBunny
BanditoBunny

Reputation: 3896

I needed to configure an icon with resolution 256, probably due to the screen size of Nexus 6.

Upvotes: 2

Related Questions