Problem with Info.plist on Catalyst

Hello!

I try to port my iPad app to Mac with Catalyst framework. I sended my app to review and get reject, because when testers run my app they doesn't see Propose String (for camera, location etc.). When I launch its from Xcode everything is fine (I can see Propose String). Any ideas?

Also, my Info.plist:
Code Block
<key>NSCameraUsageDescription</key>
<string>CAMERA_ACCESS_KEY</string>
<key>NSLocationAlwaysAndWhenInUseUsageDescription</key>
<string>GEO_ACCESS_KEY</string>
<key>NSLocationAlwaysUsageDescription</key>
<string>GEO_ACCESS_KEY</string>
<key>NSLocationUsageDescription</key>
<string>GEO_ACCESS_KEY</string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>GEO_ACCESS_KEY</string>
<key>NSPhotoLibraryAddUsageDescription</key>
<string>PHOTO_ACCESS_KEY</string>
<key>NSPhotoLibraryUsageDescription</key>
<string>PHOTO_ACCESS_KEY</string>


And InfoPlist.strings (English):
Code Block
NSPhotoLibraryAddUsageDescription = "The app needs access to the photos to get meta information in order to be able to display the photo on the map";
NSPhotoLibraryUsageDescription = "The app needs access to the photos to get meta information in order to be able to display the photo on the map";
NSCameraUsageDescription = "The app needs access to the camera to be able to take photos";
NSLocationAlwaysAndWhenInUseUsageDescription = "The app needs access to location to display your location on the map";
NSLocationWhenInUseUsageDescription = "The app needs access to location to display your location on the map";
NSLocationAlwaysUsageDescription = "The app needs access to location to display your location on the map";
NSLocationUsageDescription = "The app needs access to location to display your location on the map";

I have a similar problem where I can open pdf with my app on iOS, but on macCatalyst it is not working. It was working at a time on macOS, but it has stopped working. When I do an open with, my app is not there on macOS. I have only 1 .plist and it is definitely all there in the app installed from the macOS store.

...
<key>CFBundleDocumentTypes</key>
<array>
<dict>
<key>CFBundleTypeIconFiles</key>
<array/>
<key>CFBundleTypeName</key>
<string>PDF File</string>
<key>LSHandlerRank</key>
<string>Alternate</string>
<key>LSItemContentTypes</key>
<array>
<string>com.adobe.pdf</string>
</array>
</dict>

...
Problem with Info.plist on Catalyst
 
 
Q