Skip to content

Tags: Baseflow/flutter-geolocator

Tags

geolocator_platform_interface_v4.2.4

Toggle geolocator_platform_interface_v4.2.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
platform: Correctly handle integer-like numbers from JSON (#1531)

In JSON, an allowed representation for doubles without a fractional
part like `1.0` is actually `1`. This is, for example, the behavior of
[JSONEncoder][1].

When using `jsonDecode`, a `0` or `1` is deserialized to an `int`, which
would then cause `Position.fromMap` to crash. Instead, use `toDouble()` to
ensure that the value is converted to a `double`.

[1]: https://developer.apple.com/documentation/foundation/jsonencoder

geolocator_web_v4.0.0

Toggle geolocator_web_v4.0.0's commit message
Fixed deprecation warning

geolocator_v12.0.0

Toggle geolocator_v12.0.0's commit message
Fixed deprecation warning

geolocator_android_v4.6.0

Toggle geolocator_android_v4.6.0's commit message
Fixes deprecation warning in example app

geolocator_v11.1.0

Toggle geolocator_v11.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Expose AndroidPosition from geolocator (#1480)

* expose AndroidPosition in geolocator

* add changelog & edit version

geolocator_linux_v0.2.1

Toggle geolocator_linux_v0.2.1's commit message
Update version and changelog

geolocator_android_v4.5.5

Toggle geolocator_android_v4.5.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Start position stream after enabling location service (#1497)

* Start position stream after enabling location service

* Start position stream after enabling location service

geolocator_android_v4.5.4

Toggle geolocator_android_v4.5.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Make sure the GeolocationManager instance is shared (#1466)

geolocator_android_v4.5.3+1

Toggle geolocator_android_v4.5.3+1's commit message
Reverts androidx.core:core to version 1.9.0

geolocator_android_v4.5.3

Toggle geolocator_android_v4.5.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Adds option to configure notification channel name. (#1463)

* Adds option to configure notification channel name.

* Add play service update to ignore list dependabot