1

I want to Create a Android launch icon for Website , but in Windows based chrome URL icon comes , which is missing in Android's Chrome 'Add to HomeScreen'.For timgoolfiger.com that icon is missing in Android please help to find what's wrong.

Please find the attached images, enter image description here enter image description here enter image description here

Community
  • 1
  • 1
sunleo
  • 10,589
  • 35
  • 116
  • 196

1 Answers1

5

Quoting the Add to Homescreen documentation:

Icon

The icon that is used to install to the homescreen is determined by using the largest icon found in one of the following tags:

  • <link rel="icon" sizes="192x192" href="nice-highres.png"> (recommended)
  • <link rel="icon" sizes="128x128" href="niceicon.png">
  • <link rel="apple-touch-icon" sizes="128x128" href="niceicon.png">
  • <link rel="apple-touch-icon-precomposed" sizes="128x128" href="niceicon.png">

Caution: The 192px image format is recommended. The last two formats (apple-touch-*) are deprecated, and will be supported only for a short time.

Mattia Maestrini
  • 32,270
  • 15
  • 87
  • 94
  • Thanks for answer,but why it is not acceptiing this image, there is not specific rel attribute. – sunleo Oct 09 '15 at 10:00
  • You should provide a better quality icon, at least 128x128 in png format. You can try with the stackoverflow's image: `http://cdn.sstatic.net/stackoverflow/img/apple-touch-icon.png` – Mattia Maestrini Oct 09 '15 at 10:48