-
-
Notifications
You must be signed in to change notification settings - Fork 892
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
Handle contacts limited permission #1446
Conversation
* Handle contacts limited permission * Version bump and comments
d812f04
to
d522291
Compare
You could've left the changes you wanted/needed on the original PR instead of just taking it up |
True, but the thing is that I am immediately debugging the build environment and upgrading to latest Flutter and that is hard to leave to the community. I do appreciate the incentive though. Also I feel this is not really your problem, but it is on us for not keeping the plugin up to date. |
I have just published version 9.4.6 of the permission_handler_apple package to pub.dev and you should be able to update your project by running However I am now going through the other platforms as well and updating to the latest Flutter specs, so if you run into problems, let me know and updates for the other packages should be rolling out in a few hours. |
I just updated to 9.4.6 and it's working great! Thanks @mvanbeusekom |
Not sure about that, you could try to ask for permission again (haven't tried that). However most likely you'll have to redirect the user to the iOS "Settings" (which can be opened through the |
I have an issue with this. |
@hexlogic did you add the necessary configuration to the Podfile to enable the contact permissions SDK (see the iOS section in the README.md for details)? Just a remark on the side, there shouldn't be a a reason to use the |
I don't know why, but I changed manually in PermissionHandlerEnums.h
to
and it started working. I'm not Obj-C dev by any means, just tried to find a solution. |
That change is normally done through the |
Well, I somehow missed that part. Thank you for the hint! :)
Kind regards, Eugene
…On Tue, Apr 1, 2025 at 15:10 Maurits van Beusekom ***@***.***> wrote:
That change is normally done through the Podfile (located in your
projects ios folder) configuration as documented in the README.md file.
This way you don't have to modify the code of the plugin.
—
Reply to this email directly, view it on GitHub
<#1446 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ADTP2KUA5QH2MGKCFWQHNX32XJ64VAVCNFSM6AAAAABXQH7MTCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDONRZGE2TEMZRGU>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
[image: mvanbeusekom]*mvanbeusekom* left a comment
(Baseflow/flutter-permission-handler#1446)
<#1446 (comment)>
That change is normally done through the Podfile (located in your
projects ios folder) configuration as documented in the README.md file.
This way you don't have to modify the code of the plugin.
—
Reply to this email directly, view it on GitHub
<#1446 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ADTP2KUA5QH2MGKCFWQHNX32XJ64VAVCNFSM6AAAAABXQH7MTCVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDONRZGE2TEMZRGU>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
The package wasn't currently handling the new
CNAuthorizationStatusLimited
introduce in ios18. Older versions of ios will remain unchanged. Here's a screen recording showcasing the changeSimulator.Screen.Recording.-.iPhone.14.Pro.-.2024-10-10.at.13.43.12.mp4
Simulator.Screen.Recording.-.Logged.In.16.Pro.-.2024-10-10.at.13.46.09.mp4
List at least one fixed issue.
Pre-launch Checklist
pubspec.yaml
with an appropriate new version according to the pub versioning philosophy, or this PR is does not need version changes.CHANGELOG.md
to add a description of the change.///
).main
.dart format .
and committed any changes.flutter analyze
and fixed any errors.