Using the SDK 6.4.0
Device: FR265
function startSession() as ActivityRecording.Session {
var session = ActivityRecording.createSession({ // set up recording session
:name=>"Bouldering", // set session name
:sport=>Activity.SPORT_ROCK_CLIMBING, // set sport type
:subSport=>Activity.SUB_SPORT_BOULDERING // set sub sport type
});
if ((session != null) && (session.isRecording() == false)) {
session.start();
} else {
System.println("cant start session because session is ==>" + session);
}
return session;
}
The app completely freezes along with the simulator. the only way out is to kill the simulator, because even trying to stop the app gets timeout with the launcher.
I tried running/debugging the `Activity Tracking` example from the SDK, same behaviour