Currently, the manifest for Android Chrome has density field values as string (eg. "0.75"). However, they should be numbers (eg. 0.75), see http://www.w3.org/2008/webapps/manifest/
Two steps to implement this:
Make sure Android Chrome accepts this kind of value. This is because Google's specs conflict with W3C's.
Actually change the manifest encoding.
The text was updated successfully, but these errors were encountered:
Currently, the manifest for Android Chrome has
density
field values as string (eg."0.75"
). However, they should be numbers (eg.0.75
), see http://www.w3.org/2008/webapps/manifest/Two steps to implement this:
The text was updated successfully, but these errors were encountered: