我正在尝试将我的 Safari 扩展上传到图库。每次我这样做时,我都会在等待几天后收到错误消息:
在我们的审核过程中,我们发现您仍然没有为您的扩展程序启用自动更新。
凉爽的!但我做到了,完全按照文档。当我提交 ext 时,我提到了这个 URL:http ://up.thefreedictionary.com/Info.plist作为我的更新清单。以下是内容:
<?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>
不知道,这里可能有什么问题。为什么我不能发布它,没有自动更新?
PS CFBudleIdentifier 是“字典”。它对应于我的应用程序包 ID。有问题吗?