1

I am using Sparkle framework for updating my Mac app . The updation is successfully done . But now after the updation on every launch of the application user gets a message "Your App is Up to Date". How can i disable this message on every launch ?

I am using SUUpdater.shared.checkForUpdateInformation() and uses the delegates

- (void)updater:(SUUpdater *)updater didFindValidUpdate:(SUAppcastItem *)update;

- (void)updaterDidNotFindUpdate:(SUUpdater *)update;

when a valid update is found i will call SUUpdater.shared.installUpdatesIfAvailable

Is this making the issue ?

ManuRaphy
  • 361
  • 1
  • 13

1 Answers1

1

ok . Now i got the problem after playing around a bit. The delegate need to be set correctly on SUUpdater shared instance. After setting delegate it all works as expected.

ManuRaphy
  • 361
  • 1
  • 13