2 questions regarding Settings
How can a user approach my app’s seetings if i bypass the suuntoplus app? (i deploy directly…)
and another settings question:
on vsCode i wish to keep a setting value for the next time, so , as a test to see if it works i do:
var loadSettings = function(input, output) {
settings = localStorage.getObject(“appSettings”);
settings.active++;
if (settings == null) {
settings = {
maxPace: 12,
timelapse: 123,
active: 0
}
}
localStorage.setObject(“appVariables”, settings); //save
}
so i’m advancing ++ and saving.
on vsCode indeed it works (i added debug on UI to view value), but on my watch it stays 1…
ideas?