From the documentation: "...If you read supported from an app running on a Mac device, the value is NO. ....
if (@available(macOS 11.0, *)) { DCAppAttestService * service = DCAppAttestService.sharedService; if (service.isSupported) { // OK to proceed } else { // NOT supported - abandon ship } } else { //do what here? } }
Using an M1Pro device on macOS12.4 --> IS NOT supported....
How are we supposed to implement on macOS?