Post not yet marked as solved
Click to stop watching this thread.
You have stopped watching this post. Click to start watching again.
Post marked as unsolved with 1 replies
162
Views
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:
<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):
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";