You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Some of the user actually set the calender permission on their own to "Add Events Only", since the plugin does not cater this permission, the calender add event function will not work.
Describe the solution you'd like
It would be nice if we can handle the permission separately for "Full Access" and "Add Events Only".
Additional context
The text was updated successfully, but these errors were encountered:
Does not work on 4.3.3-20240801 prerelease. Checked the source code: in the permission check method, not less than full acces is required:
privatefunc hasEventPermissions()->Bool{letstatus=EKEventStore.authorizationStatus(for:.event)
if #available(iOS 17,*){return status ==EKAuthorizationStatus.fullAccess
}else{return status ==EKAuthorizationStatus.authorized
}}
Is your feature request related to a problem? Please describe.
Some of the user actually set the calender permission on their own to "Add Events Only", since the plugin does not cater this permission, the calender add event function will not work.
Describe the solution you'd like
It would be nice if we can handle the permission separately for "Full Access" and "Add Events Only".
Additional context
The text was updated successfully, but these errors were encountered: