0

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?

Advaith
  • 1,087
  • 3
  • 12
  • 31
  • 1
    It's hard to say without any other information. If your app is meant to be public, is it possible for you to provide your appcast url / update url? On top of the head, I would say there is a problem with the appcast, or an openssl version mismatch. – Mangled Deutz Nov 29 '12 at 11:52

1 Answers1

1

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.

Jake Petroules
  • 23,472
  • 35
  • 144
  • 225
Mangled Deutz
  • 11,384
  • 6
  • 39
  • 35