Flutter - Location setting does not show up in setting options [ Only iOS]

2.8k views Asked by At

I somewhat got in a tricky situation, I'm developing an app that highly depends on location services. It works perfectly fine on android but on ios, it says PermissionException permission is denied permanently. I do have permission strings in my info.plist and I'm actively requesting it on the home screen if the permission status is not accepted in any kind. Besides that, I made a button that opens the app settings in settings. There I cant find a location option at all.



    <key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
    <string>some string</string>
    <key>NSLocationAlwaysUsageDescription</key>
    <string>some string</string>
    <key>NSLocationWhenInUseUsageDescription</key>
    <string>some string</string>

Those are the permissions I'm using.

The version of Geolocator => geolocator: ^8.2.0

I kindly request help :) Thanks beforehand!

0

There are 0 answers