Commit fb48124d by Jeroen Weener Committed by GitHub

Add new calendar permissions (#1223)

parent 6d8d9617
## 0.2.0
* Implements the `Permission.calendarWriteOnly` and `Permission.calendarFullAccess` permissions.
* Bumps `permission_handler_platform_interface` to version `4.0.0`.
## 0.1.3 ## 0.1.3
* Adds the new Android 13 permission "BODY_SENSORS_BACKGROUND" to PermissionHandlerEnums.h. * Adds the new Android 13 permission "BODY_SENSORS_BACKGROUND" to PermissionHandlerEnums.h.
......
name: permission_handler_windows name: permission_handler_windows
description: Permission plugin for Flutter. This plugin provides the Windows API to request and check permissions. description: Permission plugin for Flutter. This plugin provides the Windows API to request and check permissions.
version: 0.1.3 version: 0.2.0
homepage: https://github.com/baseflow/flutter-permission-handler homepage: https://github.com/baseflow/flutter-permission-handler
flutter: flutter:
...@@ -13,7 +13,7 @@ flutter: ...@@ -13,7 +13,7 @@ flutter:
dependencies: dependencies:
flutter: flutter:
sdk: flutter sdk: flutter
permission_handler_platform_interface: ^3.11.0 permission_handler_platform_interface: ^4.0.0
dev_dependencies: dev_dependencies:
flutter_test: flutter_test:
......
...@@ -46,7 +46,9 @@ public: ...@@ -46,7 +46,9 @@ public:
VIDEOS = 32, VIDEOS = 32,
AUDIO = 33, AUDIO = 33,
SCHEDULE_EXACT_ALARM = 34, SCHEDULE_EXACT_ALARM = 34,
SENSORS_ALWAYS = 35 SENSORS_ALWAYS = 35,
CALENDAR_WRITE_ONLY = 36,
CALENDAR_FULL_ACCESS = 37
}; };
//PERMISSION_STATUS //PERMISSION_STATUS
......
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