From cc5e9ad432f3ff31237d1be608174cfa37f40bdf Mon Sep 17 00:00:00 2001 From: Michael Prentice Date: Thu, 23 Jun 2016 02:28:35 -0400 Subject: [PATCH] fix(mobile): add `icons/` path in front of icon `src` values fix 'Add to Homescreen' on mobile not finding icons Fixes #1179 Close #1181 --- .../blueprints/mobile/files/__path__/manifest.webapp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/addon/ng2/blueprints/mobile/files/__path__/manifest.webapp b/addon/ng2/blueprints/mobile/files/__path__/manifest.webapp index 80a89cf303bc..0c8bdd70ec23 100644 --- a/addon/ng2/blueprints/mobile/files/__path__/manifest.webapp +++ b/addon/ng2/blueprints/mobile/files/__path__/manifest.webapp @@ -3,32 +3,32 @@ "short_name": "<%= fullAppName %>", "icons": [ { - "src": "/android-chrome-36x36.png", + "src": "icons/android-chrome-36x36.png", "sizes": "36x36", "type": "image/png" }, { - "src": "/android-chrome-48x48.png", + "src": "icons/android-chrome-48x48.png", "sizes": "48x48", "type": "image/png" }, { - "src": "/android-chrome-72x72.png", + "src": "icons/android-chrome-72x72.png", "sizes": "72x72", "type": "image/png" }, { - "src": "/android-chrome-96x96.png", + "src": "icons/android-chrome-96x96.png", "sizes": "96x96", "type": "image/png" }, { - "src": "/android-chrome-144x144.png", + "src": "icons/android-chrome-144x144.png", "sizes": "144x144", "type": "image/png" }, { - "src": "/android-chrome-192x192.png", + "src": "icons/android-chrome-192x192.png", "sizes": "192x192", "type": "image/png" }