I'm packaging my application for the Mac App Store, using the following command
xcrun altool --upload-app --file MyApp.??? --type osx <credentials>
I see on some examples they are using MyApp.zip
as the file, and some it is MyApp.pkg
.
altool
does not seem happy with simply MyApp.app
as a zip file, keeps throwing a lot of errors about the Info.plist which are not accurate.
The most success I've had so far is using productbuild
to create a pkg
, but now it is demanding that I sign it with my "3rd Party Mac Developer Installer" certificate.
Is it required that you create a signed PKG to deploy to the Mac App Store with altool
, or are there any alternatives?