我正嘗試將我的Safari擴展上傳到圖庫。每次我做到了,我收到錯誤消息後等待幾天:Safari擴展的自動更新阻止了Safari Gallery中的發佈擴展
在審查過程中,我們發現您還沒有啓用自動更新 您的擴展。
酷!但我做到了,完全按照docs。當我提交分機時,我提到了這個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>
不知道,這裏可能是錯的。爲什麼我無法發佈它,甚至沒有自動更新?
P.S. CFBuldleIdentifier是「字典」。它對應我的應用程序包ID。 這是問題嗎?
我將我的擴展程序上傳到safari商店。現在更新我的擴展程序什麼所有程序我應遵循?我必須創建任何更新清單文件嗎?我應該在「Extension Builder」的更新清單字段中提到什麼? – Muthu
應該是什麼這一領域,在這裏我們不得不提到update.plist網址的關鍵,因爲info.plist中已位於有我們寫extz的URL命名的關鍵URL。 – user5821368