From appstore receive email with this issues:
ITMS-90738: Invalid purpose string value - The “NSPhotoLibraryUsageDescription” value for the NSPhotoLibraryUsageDescription key isn’t allowed in “.....”. Your app’s code references one or more APIs that access sensitive user data, or the app has one or more entitlements that permit such access. The Info.plist file for the “.....” bundle should contain a NSPhotoLibraryUsageDescription key with a user-facing purpose string explaining clearly and completely why your app needs the data.
ITMS-90738: Invalid purpose string value - The “NSCameraUsageDescription” value for the NSCameraUsageDescription key isn’t allowed in “....”. Your app’s code references one or more APIs that access sensitive user data, or the app has one or more entitlements that permit such access. The Info.plist file for the “.....” bundle should contain a NSCameraUsageDescription key with a user-facing purpose string explaining clearly and completely why your app needs the data.
In Info.plist file have defined:
<key>NSCameraUsageDescription</key>
<string>NSCameraUsageDescription</string>
<key>NSFaceIDUsageDescription</key>
<string>NSFaceIDUsageDescription</string>
<key>NSMicrophoneUsageDescription</key>
<string>NSMicrophoneUsageDescription</string>
<key>NSPhotoLibraryAddUsageDescription</key>
<string>NSPhotoLibraryAddUsageDescription</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>NSPhotoLibraryUsageDescription</string>
in InfoPlist.strings have this keys:
"NSCameraUsageDescription"="xxxxx app uses camera to take photos or videos which should be sent via secure message.";
"NSMicrophoneUsageDescription"="xxxxx app uses microphone to make secure voice communication.";
"NSPhotoLibraryUsageDescription"="xxxxx app needs access to Photo library to attach your images or videos.";
"NSPhotoLibraryAddUsageDescription" = "xxxxx app needs access to Photo library to save your images or videos.";
"NSFaceIDUsageDescription"="Enabling Face ID allows quick and secure access to your xxxx app account.";
Is some other setting necessary to solve these issues?