How can I achive Gatekeeper pass an app signed with a third-party certificate?
I have signed mine with the one I bought for the Windows version and if I have checked the "Mac App and identifier developers" option in System Preferences it can't be executed.
This is the command I executed for signing:
codesign --force --verify --verbose --sign "My cert" My.app
This is the command for verifying the signing:
codesign --verify --verbose=4 My.app
And this is the output:
My.app/: valid on disk
My.app/: satisfies its Designated Requirement
What am I doing wrong?
Thanks.