The Review of my app in App Store Connect ends with a task, that I did, but they think, I didn't:
Guideline 5.1.1 - Legal - Privacy - Data Collection and Storage
We noticed that your app requests the user’s consent to access their microphone but does not clarify the use of the microphone in the applicable purpose string.
Next Steps
Please revise the relevant purpose string in your app’s Info.plist file to specify why the app is requesting access to the user's microphone. You can modify your app's Info.plist file using the property list editor in Xcode.
I am recording Audio, that's why I use the first PlistExtra. (The other three were somehow also necessary, when uploading to the store, but I don't use Camera or file selecting in the app).
(I wrote this lines just after the Project Attributes region, not in it. This should not be the problem, right?)
So where is the problem? What could I do?
Guideline 5.1.1 - Legal - Privacy - Data Collection and Storage
We noticed that your app requests the user’s consent to access their microphone but does not clarify the use of the microphone in the applicable purpose string.
Next Steps
Please revise the relevant purpose string in your app’s Info.plist file to specify why the app is requesting access to the user's microphone. You can modify your app's Info.plist file using the property list editor in Xcode.
I am recording Audio, that's why I use the first PlistExtra. (The other three were somehow also necessary, when uploading to the store, but I don't use Camera or file selecting in the app).
B4X:
#End Region
#PlistExtra:<key>NSMicrophoneUsageDescription</key><string>Record Audio</string>
#PlistExtra:<key>NSCameraUsageDescription</key><string>Taking a photo and attach to the task.</string>
#PlistExtra:<key>NSPhotoLibraryUsageDescription</key><string>Select a photo.</string>
#PlistExtra:<key>NSPhotoLibraryAddUsageDescription</key><string>Save photo in albums.</string>
So where is the problem? What could I do?