Skip to content

Commit cc5e9ad

Browse files
Splaktarfilipesilva
authored andcommitted
fix(mobile): add icons/ path in front of icon src values
fix 'Add to Homescreen' on mobile not finding icons Fixes #1179 Close #1181
1 parent 382487b commit cc5e9ad

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

addon/ng2/blueprints/mobile/files/__path__/manifest.webapp

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,32 +3,32 @@
33
"short_name": "<%= fullAppName %>",
44
"icons": [
55
{
6-
"src": "/android-chrome-36x36.png",
6+
"src": "icons/android-chrome-36x36.png",
77
"sizes": "36x36",
88
"type": "image/png"
99
},
1010
{
11-
"src": "/android-chrome-48x48.png",
11+
"src": "icons/android-chrome-48x48.png",
1212
"sizes": "48x48",
1313
"type": "image/png"
1414
},
1515
{
16-
"src": "/android-chrome-72x72.png",
16+
"src": "icons/android-chrome-72x72.png",
1717
"sizes": "72x72",
1818
"type": "image/png"
1919
},
2020
{
21-
"src": "/android-chrome-96x96.png",
21+
"src": "icons/android-chrome-96x96.png",
2222
"sizes": "96x96",
2323
"type": "image/png"
2424
},
2525
{
26-
"src": "/android-chrome-144x144.png",
26+
"src": "icons/android-chrome-144x144.png",
2727
"sizes": "144x144",
2828
"type": "image/png"
2929
},
3030
{
31-
"src": "/android-chrome-192x192.png",
31+
"src": "icons/android-chrome-192x192.png",
3232
"sizes": "192x192",
3333
"type": "image/png"
3434
}

0 commit comments

Comments
 (0)