Dennis Guse
Dennis Guse
OpenTracks uses some Google Earth specific extension. (E.g., Gx:MultiTrack) and we should migrate to OGC KML 2.3 instead.
Until now we use the GPS/sensor reported speed to determine if the user is becoming idle. Current implementation is: * if speed is below threshold switch to idle * if...
**Is your feature request related to a problem? Please describe.** We are storing the latest reported data from a sensor, whenever a new TrackPoint is created (i.e., a new GPS...
Enabling powersaving mode usually disables the GPS and thus no track is recorded. At least, we should show a warning to the user. _Originally posted by @rafaelmuynarsk in https://github.com/OpenTracksApp/OpenTracks/issues/730#issuecomment-825883208_
In the settings, one can select the default activity to be used for all subsequent recordings. While recording, one can then change the activity for this recording. i have the...
More details here: https://developer.android.com/about/versions/12/behavior-changes-12#backup-restore
Check the lifecycle of all activities that the lifecycle is handled correctly * [ ] onCreate: inits all objects (calling onCreate again will reset the object) * [ ] onDestroy:...
Our current package structure was just taken over from MyTracks and, since then, was not really modified. It seems to be organized by the technical functionalities (e.g., `.adapters` and `.fragment`)....
We have some unit tests for BLE sensors, but the whole internal data processing is not tested if Bluetooth is used.
If a sensor was connected and send data at least once the default value should be shown. If the sensor is not connected `-` should be shown. Some refactoring: *...