Notarization the simple Xamarin.mac project throws the error

We are developing an application using .NET Xamarin.mac. While notarization after signing the package the error was thrown which was attached in a file

Then created an simple Xamarin.mac app , in notarization process the same error was thrown.

Provide an solution to resolve the issue while notarization.

We have tried to codesignin the .app file but below error was thrown

unable to build chain to self-signed root for signer "Developer ID Application: SFSecure.app: errSecInternalComponent

Answered by DTS Engineer in 829052022

The notary service requires that all code be signed with a valid Developer ID signing identity. If you don’t sign your code, it will be rejected by notary.

For general advice on how to sign and package code, see:

The top of the first doc says:

If you use a third-party developer tool to build your app, consult its documentation for advice specific to that tool.

and I’m gonna reiterate that here. It’s likely that your tool vendor, or the community of developers who use your tool, has more experience on how to sign the code that it produces.

We have tried to codesignin the .app file but [errSecInternalComponent]

I have a forums post about exactly that: Resolving errSecInternalComponent errors during code signing. In this case, the unable to build chain to self-signed root for signer message suggests you’re missing an intermediate, as explained in Fixing an untrusted code signing certificate.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

The notary service requires that all code be signed with a valid Developer ID signing identity. If you don’t sign your code, it will be rejected by notary.

For general advice on how to sign and package code, see:

The top of the first doc says:

If you use a third-party developer tool to build your app, consult its documentation for advice specific to that tool.

and I’m gonna reiterate that here. It’s likely that your tool vendor, or the community of developers who use your tool, has more experience on how to sign the code that it produces.

We have tried to codesignin the .app file but [errSecInternalComponent]

I have a forums post about exactly that: Resolving errSecInternalComponent errors during code signing. In this case, the unable to build chain to self-signed root for signer message suggests you’re missing an intermediate, as explained in Fixing an untrusted code signing certificate.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

Notarization the simple Xamarin.mac project throws the error
 
 
Q