Skip to content

Commit

Permalink
fix(mobile): add icons/ path in front of icon src values
Browse files Browse the repository at this point in the history
fix 'Add to Homescreen' on mobile not finding icons

Fixes #1179
Close #1181
  • Loading branch information
Splaktar authored and filipesilva committed Aug 12, 2016
1 parent 382487b commit cc5e9ad
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions addon/ng2/blueprints/mobile/files/__path__/manifest.webapp
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down

0 comments on commit cc5e9ad

Please sign in to comment.