I am adding an Android application banner ( https://www.chromestatus.com/features/4540065577435136 ) on my website. I added a manifest and icons, but it still does not appear. Please note that I enable the chrome flag bypassing user interaction.
Requirements for the application banner is that the site must be in HTTPS. My site is in HTTPS, but I use the SHA-1 certificate for this. Is there a chance that this is a problem or is there a problem with my manifest?
{
"name": "Website",
"icons": [
{
"src": "icon144x144",
"sizes": "144x144",
"type": "image/png"
}
],
"prefer_related_applications": true,
"related_applications": [
{
"platform": "play",
"id": "android.id"
}
],
"start_url": "index.html",
"display": "standalone"
}
source
share