Vikas Bansal
Vikas Bansal

Reputation: 11790

Having trouble in Implementing Sprakle.Framework in Cocoa Application

I am very new to Cocoa Applications. Please forgive me ignorances.

Please allow me elaborate what I am doing.

  1. I have downloaded the SPARKLE.framework from this link:Sparkle

  2. I Dragged and Dropped the SPARKLE in my project

enter image description here

  1. Then I added it in Embedded Binaries

enter image description here

  1. Created an object of SUUpdater in MainMenu.xib

enter image description here

  1. Then I changed the project verison to 1.2 and arcived>>zip then uploaded it to the server.

  2. Then I created a appcast (xml) and uploaded it to the server and added a key (SUFeedURL) in project info.plist with the url of the appcast xml

here is the appcast url: appcast enter image description here

  1. I changed the project version back to 1.0 and run the applicaiton. Its not asking for the update.

Upvotes: 0

Views: 67

Answers (1)

Aderstedt
Aderstedt

Reputation: 6518

Your appcast contains sparkle:version="1.2", which is not a value that can be directly compared to CFBundleVersion. Use only integers for sparkle:version and CFBundleVersion.

Upvotes: 0

Related Questions