- Fixes issue #1002, Xcode warning of the unresponsive of main thread when checking isLocationEnabled.
- Fixes potentially-nil return type of EventPermissionStrategy#getEntityType.
-
- Fixes typo in comment for full calendar access.
- Adds the
PERMISSION_LOCATION_WHENINUSE
macro, which can be used instead of thePERMISSION_LOCATION
macro, and exclusively enables therequestWhenInUseAuthorization
and remove therequestAlwaysAuthorization
when requesting location permission. - Improves error handling when
Info.plist
doesn't contain the correct declarations. - Adds support for the
NSLocationAlwaysAndWhenInUseUsageDescription
property list key.
- Updates the privacy manifest to include the use of the
NSUserDefaults
API. The permission_handler stores a boolean value to track if permission to always access the device location has been requested.
- Adds empty privacy manifest.
- Adds a new permission
Permission.backgroundRefresh
to check the background refresh permission status.
- Updates plist key from
NSPhotoLibraryUsageDescription
toNSPhotoLibraryAddUsageDescription
.
- Adds support to request authorization to access SiriKit via the
Permission.assistant
permission.
- Adds the support for
Permission.calendarWriteOnly
andPermission.calendarFullAccess
permissions which are introduced in iOS 17+.
- Adds checking whether Bluetooth service is enabled through
Permission.bluetooth.serviceStatus
.
- Fixes an issue where the
Permission.location.request()
,Permission.locationWhenInUse.request()
andPermission.locationAlways.request()
calls returnedPermissionStatus.denied
regardless of the actual permission status.
- Fixes an issue where the
Permission.locationAlways.request()
call hangs when the application was granted "Allow once" permissions for fetching location coordinates.
- Adds the new Android 13 permission "BODY_SENSORS_BACKGROUND" to PermissionHandlerEnums.h.
- Adds the "Provisional" permission status which is introduced in iOS 12+.
- Adds missing return statement causing the permission_handler to freeze when already requesting permissions.
- Adds new Android 13 permissions "SCHEDULE_EXACT_ALARM, READ_MEDIA_IMAGES, READ_MEDIA_VIDEO and READ_MEDIA_AUDIO" to PermissionHandlerEnums.h
- Prevents appearing popup that asks to turn on Bluetooth on iOS
- Adds new Android 13 NEARBY_WIFI_DEVICES permission to PermissionHandlerEnums.h
- Adds flag inside
UserDefaults
to save whetherlocationAlways
has already been requested and prevent further requests, which would be left unanswered by the system.
- Ensures a request for
locationAlways
permission returns a result unblocking the permission request and preventing theERROR_ALREADY_REQUESTING_PERMISSIONS
error for subsequent permission requests.
- Moves Apple implementation into its own package.