Dear Apple team,
I am trying to deploy our new WalkShop app. It is a new react-native version I rebuilt with a newer version of my tech stack.
I added the PrivacyInfo.xcprivacy using Xcode and it is in the folder of the app. The content of it is:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>NSPrivacyTracking</key>
<true/>
</dict>
</plist>
The review process fails constantly and the email I get tells me that the NSPrivacyTracking needs to be true or the manifest should be vailid
What is missing in this file and how can I do a validation check myself before submitting the new app?