Reputation: 1117
I am using sparkle for software update. I signed my app with Apple developer certificate and uploaded the build. Then I tried to update by calling 'checkForUpdates:' method. But I am getting an error saying "Update is not properly signed". What might be the reason? Did I miss anything?
Upvotes: 1
Views: 2781
Reputation: 11413
You likely need to review the tips about how to codesign properly for Sparkle here: https://github.com/sparkle-project/Sparkle/issues/216
Specifically, sign all binaries and frameworks, and do so with the proper codesign arguments.
Upvotes: 1