At present, error detection isn't supported on Mac OS apps.
Smartbeat doesn't function on Mac OS Apps or iPad apps built for Mac. (Mac Catalyst)
Additionally, when simultaneously building Mac Catalyst apps, the following two steps should be taken to prevent a build error.
1. Start Xcode and select the relevant target. Under "General" find "Frameworks, Libraries, and Embedded Content", and change the Platforms of "SmartBeatFramework.framework" from "macOS + iOS" to "iOS".
2. Use the following macro block to exclude SmartBeat method calls from the iPad build for Mac.
#if !TARGET_OS_MACCATALYST
// Smartbeat initialization and other method calls
#endif
References:
Creating a Mac Version of Your iPad App
Bring your iPad app to macOS with Mac Catalyst.
https://developer.apple.com/documentation/uikit/creating_a_mac_version_of_your_ipad_app