From 8bd0e0bbd6f32da7740ae4fa8d5954f3cbc94ba4 Mon Sep 17 00:00:00 2001 From: Shimul Date: Sun, 21 Mar 2021 17:45:19 +0530 Subject: [PATCH] PWA for Mobile Browser Finxing PWA issue for Mobile Phones. icon loading issue --- app/static/img/favicon/manifest.json | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/app/static/img/favicon/manifest.json b/app/static/img/favicon/manifest.json index 013d4a6..2be7b55 100644 --- a/app/static/img/favicon/manifest.json +++ b/app/static/img/favicon/manifest.json @@ -1,41 +1,45 @@ { - "name": "App", + "name": "Whoogle Search", + "short_name": "Whoogle", + "display": "fullscreen", + "scope": "/", + "start_url": "$APP_ROOT/templates/index.html", "icons": [ { - "src": "\/android-icon-36x36.png", + "src": "android-icon-36x36.png", "sizes": "36x36", "type": "image\/png", "density": "0.75" }, { - "src": "\/android-icon-48x48.png", + "src": "android-icon-48x48.png", "sizes": "48x48", "type": "image\/png", "density": "1.0" }, { - "src": "\/android-icon-72x72.png", + "src": "android-icon-72x72.png", "sizes": "72x72", "type": "image\/png", "density": "1.5" }, { - "src": "\/android-icon-96x96.png", + "src": "android-icon-96x96.png", "sizes": "96x96", "type": "image\/png", "density": "2.0" }, { - "src": "\/android-icon-144x144.png", + "src": "android-icon-144x144.png", "sizes": "144x144", "type": "image\/png", "density": "3.0" }, { - "src": "\/android-icon-192x192.png", + "src": "android-icon-192x192.png", "sizes": "192x192", "type": "image\/png", "density": "4.0" } ] -} \ No newline at end of file +}