Has anyone had any success deploying a dext driver on Big Sur Macs?
We currently have a kext driver that we have built into an installer, signed, notarized etc.
However they are not supported by Big Sur .
According to Apple
"Instead of installing system extensions using an installer, you ship system extensions inside your app’s bundle and install them from your app.
*System extensions reside inside your app’s Contents/Library/SystemExtensions
folder. *
To start the activation process for your system extension, create an activation request by calling the [activationRequest(forExtensionWithIdentifier:queue:)
]"
// Create an activation request and assign a delegate to
// receive reports of success or failure.
let request = OSSystemExtensionRequest.activationRequest(forExtensionWithIdentifier: driverID,
queue: DispatchQueue.main)
request.delegate = self// Submit the request to the system.
let extensionManager = OSSystemExtensionManager.shared
extensionManager.submitRequest(request)
My question is how can I do all this with a xojo app.
Thank you
Lisa