In reference to these thorough write up's on the madness that is fav icons:
http://www.jonathantneal.com/blog/understand-the-favicon/
https://mathiasbynens.be/notes/touch-icons
http://en.wikipedia.org/wiki/Favicon
Android is now starting to use the <link rel="icon" .. />
syntax for it's homescreen icons which is the same as the fav icon syntax.
Does anyone have the mysterious size combinations and ordering to be able to target android with a separate homescreen icon and still keep cross browser compatibility.
For example our fav icon has a transparent background and we'd prefer dedicated icons for homescreens.
Answer
Build and declare the following icons in this order:
Note: Android Chrome may use the 192x192 icon for both home screen and bookmark, although v37 does not seem to do so.
You can use this favicon generator to create code and pictures you can use as a template. Since it does not support differentiated pic for Android, you will need to add the 194x194 picture manually. Full disclosure: I'm the author of this site.
Explanations
For reference, Android Chrome uses a 192x192 icon
<link rel="icon" sizes="192x192" href="/favicon-192x192.png">
I've made some experiments about the Android Chrome favicon. The conclusions:
About the other browsers: as far as I know, there is no other browser that explicitly picks the 192x192 icon. Good. Else, that would be a blocking issue. There are two policies to deal with:
With these information, the game is now to offer to both kind of browsers what they want, so no one (but Android Chrome) will take the special 192x192 icon. Thus the answer above.
A little additional twist about the order. Normally, it is irrelevant, since a browser is supposed to select an icon based on its size only. Except for Firefox, which picks the last declared icon.