Remove apps without the app loader? #7255
Unanswered
espruino-discuss2
asked this question in
Bangle.js
Replies: 1 comment
-
Posted at 2024-12-13 by @gfwilliams Hi! Yes, that should be absolutely fine to do. For other apps it might be different, but looking at |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Posted at 2024-12-12 by DFox
Am I safe removing e.g. the health app programmatically?
code snippet:
var files = require("Storage").list();
files.forEach(function(element){
if(element.startsWith("health") ) require("Storage").erase(element);
});
The reason I ask is I'm managing ~50 Bangles and I'd like to do this with Node instead of running the app loader on all of them. This is on Bangle.js2 if it makes a difference.
Thanks in advance!
Dan Fox
Beta Was this translation helpful? Give feedback.
All reactions