diff options
Diffstat (limited to 'js/inknswitch')
-rw-r--r-- | js/inknswitch/sw.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/js/inknswitch/sw.js b/js/inknswitch/sw.js index 052c0a4..81e6bf4 100644 --- a/js/inknswitch/sw.js +++ b/js/inknswitch/sw.js @@ -4,7 +4,12 @@ self.addEventListener('install', function(event) { return cache.addAll([ './index.html', './ink.js', - './icon.png' + './icon.png', + './android-icon-36x36.png', + './android-icon-48x48.png', + './android-icon-72x72.png', + './android-icon-96x96.png', + './android-icon-144x144.png' ]); }) ); |