From 4a9dc7249fe0e5962bee673207be5788f2c326b0 Mon Sep 17 00:00:00 2001 From: Ebrahim Byagowi Date: Thu, 12 Feb 2015 23:30:11 +0000 Subject: [PATCH] Add fullscreen Android/iOS app capability * https://developer.chrome.com/multidevice/android/installtohomescreen * https://developer.apple.com/library/safari/documentation/AppleApplications/Reference/SafariHTMLRef/Articles/MetaTags.html --- src/main/app/index.html | 4 ++++ src/main/app/manifest.json | 31 +++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 src/main/app/manifest.json diff --git a/src/main/app/index.html b/src/main/app/index.html index fbad9134..833063e4 100644 --- a/src/main/app/index.html +++ b/src/main/app/index.html @@ -4,6 +4,10 @@ CommaFeed + + + + diff --git a/src/main/app/manifest.json b/src/main/app/manifest.json new file mode 100644 index 00000000..78489d88 --- /dev/null +++ b/src/main/app/manifest.json @@ -0,0 +1,31 @@ +{ + "name": "CommaFeed", + "icons": [ + { + "src": "app-icon-72.png", + "sizes": "72x72", + "type": "image/png", + "density": "1.5" + }, + { + "src": "app-icon-114.png", + "sizes": "96x96", + "type": "image/png", + "density": "2.0" + }, + { + "src": "app-icon-144.png", + "sizes": "144x144", + "type": "image/png", + "density": "3.0" + }, + { + "src": "app-icon-192.png", + "sizes": "192x192", + "type": "image/png", + "density": "4.0" + } + ], + "start_url": "/", + "display": "standalone" +}