- Fixed formatting
- Lowered minSdk
- Updated kotlin and AGP
- Upgraded example app to
carp_background_location
4.0.0 - Implemented minor fixes
- improvement to
MobilityContext
API. - misc updates to documentation.
- update to null-safety
- rename of
MobilityFactory
toMobilityFeatures
and using the standard Dart singleton syntax forMobilityFeatures()
. - misc updates to documentation
- removal of exception
- update to use
carp_background_location
- Documentation
- Added images and changed documentation somewhat
- Move Consolidation
- Moves are now recomputed each time a stop is computed
- This means that the number of moves is always one less that the number of stops
- Move Calculation
- Fixed a bug when creating moves between two stops belonging to the same place
- To avoid inaccuracy distance as a resulting of noisy readings when inside buildings, this path should be computed as a straight line, rather than from a list of points
- Stop merging
- Implemented stop merging to prevent gaps in the data
- This was especially a problem on iOS devices during the night, where location sampling is automatically limited by the OS
- Gaps in the data during the night would cause the home stay feature to be very unreliable
- Stream-based API
- Removed Routine Index temporarily
- Stream-based API
- The API is now fully streaming-based.
- Flushing data
- Fixed an error where location samples were being flushed when they shouldn't
- Dependencies
- Updated dependencies
- Streaming based API
- Renamed GeoPosition to GeoLocation due to naming conflicts with another package.
- Streaming based API
- Refactored API to support streaming
- An example app is now included
- Restructuring
- MobilitySerializer is now private.
- Major refactoring
- Renamed and refactored classes such as Location and SingleLocationPoint to GeoPosition and LocationSample respectively.
- Private classes
- Made a series of classes private such that they cannot be instantiated from outside the package
- Formatting
- Fixed a series of formatting issues which caused the package to score lower on pub.dev
- Upgraded the release number to 1.x.x to increase the package score on pub.dev
- Private constructor.
- The Mobility Context constructor is now private
- A Mobility Context should always be instantiated via the ContextGenerator class.
- First release.
- The first official release with working unit tests
- Includes a minimalistic API which allows the application programmer to generate features with very few lines of code.