# Mac Microphone Permission: Required for UE 5.0 and 5.3

## Editor Mic **Permission Setup**

1. Temporarily Disable SIP - Follow the instructions provided in the [Disabling and Enabling SIP](https://developer.apple.com/documentation/security/disabling_and_enabling_system_integrity_protection) guide - Note: make sure to run the command `csrutil disable`  in the terminal.
2. Clone the tccutil Repository - Open the Terminal, and enter the following command to clone the repository: \
   `git clone https://github.com/DocSystem/tccutil`&#x20;
3. Navigate to the tccutil Directory by entering `cd tccutil` into the terminal.
4. Ensure [Python is installed](https://www.dataquest.io/blog/installing-python-on-mac/) on your system. Run the tccutil command In the Terminal to allow microphone access for Unreal Engine:\
   `sudo python3 tccutil.py -e -id com.epicgames.UnrealEditor --microphone --enable`
5. Re-enable SIP Once the modifications are complete, [follow the same guide](https://developer.apple.com/documentation/security/disabling_and_enabling_system_integrity_protection) to re-enable System Integrity Protection but this time run the command `csrutil enable`.

## Packaging the app with Convai (Not required for MacOS 14.x)

After packaging your game, if you notice any crash or microphone not working then proceed to doing the following steps

1. &#x20;locate the `Info.plist` file in the packaged game directory. This is typically found by right-clicking the package, selecting 'Show Package Contents', and editing `/Contents/Mac/Info.plist`.
2. Add the following entries to request microphone access:

```xml
<key>NSMicrophoneUsageDescription</key>
<string>Your custom message explaining why Convai needs microphone access</string>
```

<figure><img src="https://413558230-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FEtUJA212Zc1S9ACc8T4l%2Fuploads%2Fy23ZxqQtzM08FYiqmdh6%2Fimage.png?alt=media&#x26;token=fd47b88d-70ce-4924-9265-fccfd1eede27" alt=""><figcaption><p>Example Info.plist after adding the microphone permission lines</p></figcaption></figure>

3. Save the changes to the `Info.plist` file.
