I upload my app on App Store and I add NSUserTrackingUsageDescription to info.plist but still it throw me error like below I don't know much about App Store so can anyone suggest me how to fix this
Unable to Submit for Review
The items below are required to start the review process: Your app contains NSUserTrackingUsageDescription, indicating that it may request permission to track users. To submit for review, update your App Privacy response to indicate that data collected from this app will be used for tracking purposes, or update your app binary and upload a new build
CodePudding user response:
You need to update about user data tracking in the App Privacy section of App Store Connect.
PS : You only need to use the NSUserTrackingUsageDescription property in the info.plist if you are collecting user data for Advertising and/or Third-Party libraries.
If you keep the information within your app, or for authentication purposes, you are not Tracking; therefore, you do not need this property.
CodePudding user response:
Please add location permission in your app privacy
I attach screen shot for reference:
U can see this type of box after adding permission


