File tree Expand file tree Collapse file tree 3 files changed +10
-3
lines changed
permission_handler_windows Expand file tree Collapse file tree 3 files changed +10
-3
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.2.0
2
+
3
+ * Implements the ` Permission.calendarWriteOnly ` and ` Permission.calendarFullAccess ` permissions.
4
+ * Bumps ` permission_handler_platform_interface ` to version ` 4.0.0 ` .
5
+
1
6
## 0.1.3
2
7
3
8
* Adds the new Android 13 permission "BODY_SENSORS_BACKGROUND" to PermissionHandlerEnums.h.
Original file line number Diff line number Diff line change 1
1
name : permission_handler_windows
2
2
description : Permission plugin for Flutter. This plugin provides the Windows API to request and check permissions.
3
- version : 0.1.3
3
+ version : 0.2.0
4
4
homepage : https://github.com/baseflow/flutter-permission-handler
5
5
6
6
flutter :
@@ -13,7 +13,7 @@ flutter:
13
13
dependencies :
14
14
flutter :
15
15
sdk : flutter
16
- permission_handler_platform_interface : ^3.11 .0
16
+ permission_handler_platform_interface : ^4.0 .0
17
17
18
18
dev_dependencies :
19
19
flutter_test :
Original file line number Diff line number Diff line change @@ -46,7 +46,9 @@ class PermissionConstants {
46
46
VIDEOS = 32 ,
47
47
AUDIO = 33 ,
48
48
SCHEDULE_EXACT_ALARM = 34 ,
49
- SENSORS_ALWAYS = 35
49
+ SENSORS_ALWAYS = 35 ,
50
+ CALENDAR_WRITE_ONLY = 36 ,
51
+ CALENDAR_FULL_ACCESS = 37
50
52
};
51
53
52
54
// PERMISSION_STATUS
You can’t perform that action at this time.
0 commit comments