Reputation: 11790
I am very new to Cocoa Applications. Please forgive me ignorances.
Please allow me elaborate what I am doing.
I have downloaded the SPARKLE.framework from this link:Sparkle
I Dragged and Dropped the SPARKLE in my project
Then I changed the project verison to 1.2 and arcived>>zip then uploaded it to the server.
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
Upvotes: 0
Views: 67
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