Hello,
I have one question. I am trying to work with Properties for a first time. I am able to use setProperty with Activitymonitor distance/calories from onUpdate but I can't find a way to do it in onStart. Is it possible to save activityMonitor info in onStart? My solution looks ok till I use resume later on fenix3...
I tried to use it like:
if(info.elapsedDistance <= 1){
App.getApp().setProperty("startCalories",calories);
System.println("Kalorie: " +startCalories);
}
else.......
Is it possible to do it through onStart? Will it be cleared after "resume later" or not? I need the start value for the whole activity.
Thank you