SampleEndpointApp - Extension not found in App bundle

Hi, I am trying to test this SampleEndpointApp with WWDC2020, and I have tried several times starting from a re-downloading of the sample code, but get the same error every time.

Failed to install the extension ❌
Extension not found in App bundle

The only code change is to select my Team, and then I build. I copy the app into applications and then run it. I have checked the app package and the extension is actually in the Library folder, so I am at a loss to debug any further. I have SIP disabled, and I have checked in system settings, and I am not being asked to enable any extension in Privacy and Security.

I am running Ventura 13.0.1 and Xcode Version 14.1 (14B47b)

Thanks in advance.

For those who run into the same problem, here are the fixes you will need to make to the sample code work.

  1. Replace the bundleID of the app with your own. e.g. com.something.endpointApp
  2. Replace the bundleID of the extension to the same as the app bundleId but adding .Extension to it. e.g. com.something.endpointApp.Extension
  3. Update this line of code in the ViewController with your new extension bundleID.

OSSystemExtensionRequest *req = [OSSystemExtensionRequest activationRequestForExtension:@"com.something.endpointApp.Extension" queue:dispatch_get_main_queue()];

SampleEndpointApp - Extension not found in App bundle
 
 
Q