What's the best way to generate <link rel="icon" sizes="196x196" href="my_android_icon.png">
in Rails for the asset pipeline? (https://developer.chrome.com/multidevice/android/installtohomescreen)
I could use <%= favicon_link_tag 'my_android_icon.png', :rel => "icon", :type => "image/png", size: "196x196" %>
(How to set "shortcut icon" in rails?), but it doesn't feel right as Android homescreen icons aren't really favicons.