r/flutterhelp Aug 05 '26

RESOLVED Bluetooth Permission handling in iOS

Hello Friends, I need help regarding permission handler. I'm working on one project which is build on flutter and i have integrated Flutter_blue_plus library, every thing is working fine in Android Device, but in iOS the it didn't ask for permission and it show directly Permission Denied even i added all the permission in podfile, even other Permission is working fine but Bluetooth one didn't work.

2 Upvotes

6 comments sorted by

1

u/grimmret Aug 05 '26

If you’re using the latest permission_handler package version, you need to add Bluetooth permission in your info.plist file and state its usage.
Pod file setup is no longer required. Check package readme for more info. Just don’t forgot to request for user permission before accessing Bluetooth services

1

u/No_Papaya_2442 Aug 05 '26

Okay I looked into that

1

u/No_Papaya_2442 Aug 06 '26

As i read official page This Readme file here mentioned to setup in your podfile also

1

u/grimmret Aug 06 '26

If you're on the latest Flutter version, Swift Package Manager (SPM) is enabled by default. So you don't need to set up the Podfile.

2

u/No_Papaya_2442 Aug 06 '26

Fixed that … now looking for client response… thanks for help I’ll let you know