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
{{ message }}
This repository has been archived by the owner on Dec 14, 2023. It is now read-only.
So I was trying to upload my app to the ios app store, and it got a rejected because I needed to explain why my app needs the user's location. It was weird, because I don't use any location services in my app. (they asked me to specify the NSLocationWhenInUseUsageDescription string in the Info.plist)
After some investigation, it turned out that DKImagePickerController has an option to tag the location of the user for the photos taken by that plugin. So I assume this is the reason the ios review team thinks I'm using location, even though I really don't want to because the location of the photos are irrelevant to my app.
Is there a way or a workaround to configure this plugin so that the location permission is only needed when the location tagging is turned on? Can we even turn this tagging off?
It looks very sketchy that my app is asking for the users' location when it doesn't really need it. I don't want my users to think I'm spying on them or something.
The text was updated successfully, but these errors were encountered:
It seems that into DKImagePickerController it is disabled by default.
/// Photos will be tagged with the location where they are taken.
/// If true, your Info.plist should include the "Privacy - Location XXX" tag.
open var containsGPSInMetadata = false
And I don't see anywhere that this plugin set that variable to true.
So it looks weird that apple is detecting that we're using location.
So I was trying to upload my app to the ios app store, and it got a rejected because I needed to explain why my app needs the user's location. It was weird, because I don't use any location services in my app. (they asked me to specify the NSLocationWhenInUseUsageDescription string in the Info.plist)
After some investigation, it turned out that DKImagePickerController has an option to tag the location of the user for the photos taken by that plugin. So I assume this is the reason the ios review team thinks I'm using location, even though I really don't want to because the location of the photos are irrelevant to my app.
Is there a way or a workaround to configure this plugin so that the location permission is only needed when the location tagging is turned on? Can we even turn this tagging off?
It looks very sketchy that my app is asking for the users' location when it doesn't really need it. I don't want my users to think I'm spying on them or something.
The text was updated successfully, but these errors were encountered: