相對於之前的版本,有以下區別:
-
要加上 entitlements.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>application-identifier</key> <string>teamID.bundle.ID</string> // 可以是 teamID.* <key>keychain-access-groups</key> <array> <string>teamID.bundle.ID</string> // 可以是 teamID.* </array> </dict> </plist>
-
簽名的指令碼要改成
usr/bin/codesign -f -s "iPhone Distribution: XXXX Co.,Ltd" --entitlements entitlements.plist "AppName.app"
Debug的過程中很感激 fir.im(http://fir.im/dev/tools) 提供了一個非常好的工具,叫 Log Guru,讓我快速找到了問題點。