1

I was trying to upload a react-native expo app, I just built and I keep getting this error.

ITMS-90894: Missing Info.plist value

Since I am using expo, I don't know how to add this in my app.json file

"ios": {"supportsTablet": true, "infoPlist": { "NSPhotoLibraryUsageDescription": "Enable access your photos"}, },

I would really appreciate an example. Thank you,

ITMS-90894: Missing Info.plist value

jonson.ncube
  • 226
  • 2
  • 16

1 Answers1

0

Here is the solution...

"infoPlist": {
        "NSMicrophoneUsageDescription": "Enable appName to...microphone...",
        "NSCameraUsageDescription": "Enable appName to access camera ...",
        "NSPhotoLibraryUsageDescription": "Enable blah to access photos...",
        "NSUserActivityTypes": [
          "INSendMessageIntent"
        ]
      }

jonson.ncube
  • 226
  • 2
  • 16