Commit acb64f8a by Maurits van Beusekom Committed by GitHub

Merge pull request #621 from Baseflow/issue/604_update_meta_dependency_platform_interface

Issue/604 update meta dependency platform interface
parents 30939b0a b6d8dc97
## 3.6.1
* Updated `meta` dependency to version `^1.3.0`.
* Updated documentation for the `locationAlways` permission
## 3.6.0 ## 3.6.0
* Add support for iOS Critical alerts and Android Access Notification Policy. * Add support for iOS Critical alerts and Android Access Notification Policy.
......
...@@ -39,6 +39,11 @@ class Permission { ...@@ -39,6 +39,11 @@ class Permission {
/// When running on Android < Q: Fine and Coarse Location /// When running on Android < Q: Fine and Coarse Location
/// When running on Android Q and above: Background Location Permission /// When running on Android Q and above: Background Location Permission
/// iOS: CoreLocation - Always /// iOS: CoreLocation - Always
/// When requesting this permission the user needs to grant permission
/// for the `locationWhenInUse` permission first, clicking on
/// the `Àllow While Using App` option on the popup.
/// After allowing the permission the user can request the `locationAlways`
/// permission and can click on the `Change To Always Allow` option.
static const locationAlways = PermissionWithService._(4); static const locationAlways = PermissionWithService._(4);
/// Android: Fine and Coarse Location /// Android: Fine and Coarse Location
......
...@@ -3,12 +3,12 @@ description: A common platform interface for the permission_handler plugin. ...@@ -3,12 +3,12 @@ description: A common platform interface for the permission_handler plugin.
homepage: https://github.com/baseflow/flutter-permission-handler/tree/master/permission_handler_platform_interface homepage: https://github.com/baseflow/flutter-permission-handler/tree/master/permission_handler_platform_interface
# NOTE: We strongly prefer non-breaking changes, even at the expense of a # NOTE: We strongly prefer non-breaking changes, even at the expense of a
# less-clean API. See https://flutter.dev/go/platform-interface-breaking-changes # less-clean API. See https://flutter.dev/go/platform-interface-breaking-changes
version: 3.6.0 version: 3.6.1
dependencies: dependencies:
flutter: flutter:
sdk: flutter sdk: flutter
meta: ^1.0.5 meta: ^1.3.0
plugin_platform_interface: ^2.0.0 plugin_platform_interface: ^2.0.0
dev_dependencies: dev_dependencies:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment