I'm trying uploading my Safari Extension to Gallery. Every time I did it, I get error message after a few days of waiting:
During our review, we found that you still have not enabled automatic updating for your extension.
Cool! But I did it, exactly according the docs. When I submitted ext, I mentioned this URL: http://up.thefreedictionary.com/Info.plist as my Update Manifest. Here is content:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Extension Updates</key>
<array>
<dict>
<key>CFBundleIdentifier</key>
<string>dictionary</string>
<key>Developer Identifier</key>
<string>SZ9T8BXLWC</string>
<key>CFBundleVersion</key>
<string>1</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>URL</key>
<string>
http://up.thefreedictionary.com/TheFreeDictionary.safariextz
</string>
</dict>
</array>
</dict>
</plist>
No idea, what may be wrong here. And why I can't publish it, ever without automatic updates?
P.S. CFBuldleIdentifier is "dictionary". It corresponding my app bundle id. Is it problem?