Hi,
I have bindings to classes (SFCertificateView and SFChooseIdentityPanel) of the SecurityInterface framework that worked find with the dynamic registrar. With the static registrar I get the following errors:
Undefined symbols for architecture x86_64:
"_OBJC_CLASS_$_SFCertificateView", referenced from:
objc-class-ref in registrar-dfbe63.o
"_OBJC_CLASS_$_SFChooseIdentityPanel", referenced from:
objc-class-ref in registrar-dfbe63.o
ld: symbol(s) not found for architecture x86_64
clang : error : linker command failed with exit code 1 (use -v to see invocation)
I can fix this by including said framework in the Native References section of the project, but this is less than ideal since it's including it in the App bundle. Beside not wanting to bundle macOS frameworks in my app, it also messes with my signing script.
Any ideas?