You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When submitting a macOS app to the app store, it is required to be archived into .pkg and signed.
Xcode 11 now supports the Apple Developer and Apple Distribution certificates. While these work for signing the app, they will not work for signing the installer/archive that needs to get uploaded to the store:
productbuild: error: Cannot write product to "buildMAS/MacOSX-10.14-Release/myApp.pkg". (Could not find appropriate signing identity for “Apple Distribution: my LLC (xxxxxxxx)”. An installer signing identity (not an application signing identity) is required for signing flat-style products.)
rake aborted!
You need to use an installer certificate, usually 3rd Party Mac Developer Installer
When submitting a macOS app to the app store, it is required to be archived into
.pkg
and signed.Xcode 11 now supports the
Apple Developer
andApple Distribution
certificates. While these work for signing the app, they will not work for signing the installer/archive that needs to get uploaded to the store:You need to use an installer certificate, usually
3rd Party Mac Developer Installer
Our current code,
https://github.com/amirrajan/rubymotion-templates/blob/206ccac06fd7a3328f64d066f72887d8130b17ea/motion/project/template/osx/builder.rb#L37-39,
expects a certificate name with the word
Application
in it, to replace withInstaller
. This no longer works when signing your code using anApple Distribution
certificate.We may need an additional
config
variable, to allow us to configure which certificate to use.what do you think?
The text was updated successfully, but these errors were encountered: