-
-
Notifications
You must be signed in to change notification settings - Fork 102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
iOS17 Calendar Permission Changes #180
Comments
A workaround that i made is request permissions by react-native-calendar-events like this:
But first you need to make this change in your RNCalendarEvents.m file from react-native-calendar-events agent8/react-native-calendar-events@368206c |
Would it be simpler by just calling |
@phatlaunchdeck we also have problems in react-native-permissions zoontek/react-native-permissions#804 |
I made it work this way: master...remipou:react-native-add-calendar-event:master |
Thank you, Remipou. This worked great for me! |
NSCalendarsUsageDescription has been deprecated. [https://developer.apple.com/documentation/bundleresources/information_property_list/nscalendarsusagedescription] |
Is there any way to mergen this PR?? |
Any updates on this PR?? |
Thus library no longer deals with permissions. |
There are new changes to the iOS17 Calendar permission where 2 new permissions are introduced
full access
andwrite only
.This will cause the
presentEventCreatingDialog
to be broken on iOS17 because when checking the permission and requesting viarequestAccessToEntityType
will cause the app to throw an error. Specifically therequestAccessToEntityType
is deprecated on iOS17 and 2 new methods are introduced.Ref:
I think other libraries are facing the same issues as well wmcmahan/react-native-calendar-events#440
The text was updated successfully, but these errors were encountered: