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
* Adds the new Android 13 permission "BODY_SENSORS_BACKGROUND" to PermissionHandlerEnums.h.
......
name: permission_handler_windows
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
flutter:
......@@ -13,7 +13,7 @@ flutter:
dependencies:
flutter:
sdk: flutter
permission_handler_platform_interface: ^3.11.0
permission_handler_platform_interface: ^4.0.0
dev_dependencies:
flutter_test:
......
......@@ -46,7 +46,9 @@ public:
VIDEOS = 32,
AUDIO = 33,
SCHEDULE_EXACT_ALARM = 34,
SENSORS_ALWAYS = 35
SENSORS_ALWAYS = 35,
CALENDAR_WRITE_ONLY = 36,
CALENDAR_FULL_ACCESS = 37
};
//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