Posts

Post not yet marked as solved
5 Replies
Swift version needs to be:override public func beginRequest(with context: NSExtensionContext) { super.beginRequestWithExtensionContext(context)}The AUv3 needs to be a member variable of the ViewController, not a property.The info.plist NSExtensionPrimaryClass and factoryFunction [Swift] parameters need to match the filename of the AUViewController
Post not yet marked as solved
5 Replies
My AUv3 plugin is now receiving the following error from the auval tool:Unable to setup extension context - error: Couldn’t communicate with a helper application. Cannot open component: 4097I'm not certain how to fix this extension context error.The ViewController does conform to the NSExtensionRequestHandling protocol, inherited by AUAudioFactoryObjective-C:-(void) beginRequestWithExtensionContext: (nonnull NSExtensionContext *) context { [super beginRequestWithExtensionContext: context];}Swift:override public func beginRequest(with context: NSExtensionContext) { var extensionContextItems: NSArray = context.inputItems as NSArray}
Post not yet marked as solved
5 Replies
I still can't figure out why my AudioUnit is unable to be loaded by hosts.The auval command line tool returns the following errors:Assertion failure in +[NSServiceViewController currentAppIsViewService], /BuildRoot/Library/Caches/com.apple.xbs/Sources/ViewBridge/ViewBridge-401.1/NSViewService.m:131libc++abi.dylib: terminating with uncaught exception of type int/usr/bin/auval: line 8: 2470 Abort trap: 6 arch -x86_64 /usr/bin/auvaltool "$@"source code:https://github.com/carlsound/AUv3-Effect-Gain
Post not yet marked as solved
5 Replies
XCode -> ~Debug -> Attach to Process by PID or Name...
Post not yet marked as solved
5 Replies
Would you have a screen shot of how to setup a macOS AUv3 extension target to run with auval for debugging?