Infoplist not being Recognized

Good day I’m struggling to deploy my application in the Appstore, the reason was because I am using the native Permissions for ios. I’ve used infoPlist yet when Simulating it (expo), message being used was still the native one and not the custom message I have set. I have both tried building a standalone to test and again doing a simulation test to no avail.

snippet:

"ios": {
*.......... other line of code...*

      "infoPlist": {
        "NSMicrophoneUsageDescription": "This app uses the microphone to play alarm and alerts.",
        "NSLocationWhenInUseUsageDescription": "This app needs to access your location to get your coordinates."
      }

*.......... other line of code...*

Can someone give me an insight to what I need to do or what I am doing wrong. Thank you.

Hey @purefml, testing in the Expo Go app will not show your custom strings as this is set at build-time natively. However, if you’ve built a standalone app and you have those values present in your app.json file, you should then see the custom strings when running your standalone app. What SDK version are you building with?

Cheers,
Adam