我试图用电子打包器打包我的电子应用程序并提交到应用程序商店,但App开发人员仍然失败了2个错误。我的权利与其说法不符,但我不知道我哪里出错了。
错误:
错误ITMS-90287:“无效的代码签名权利。权利 您的应用包中的签名与包含的签名不匹配 在配置文件中。捆绑包含一个不是的密钥 包含在配置文件中: 'com.apple.developer.team-identifier'中 'com.comp.app.pkg /有效载荷/ App.app /内容/ MacOS的/应用程序'。“
错误ITMS-90287:“无效的代码签名权利。权利 您的应用包中的签名与包含的签名不匹配 在配置文件中。捆绑包含一个不是的密钥 包含在配置文件中: 'com.apple.application-identifier'中 'com.comp.app.pkg /有效载荷/ App.app /内容/ MacOS的/应用程序'。“
Entitlements Parent:
<?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>com.apple.security.app-sandbox</key>
<true/>
<key>com.apple.security.network.client</key>
<true/>
</dict>
</plist>
Entitlements Child:
<?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>com.apple.security.app-sandbox</key>
<true/>
<key>com.apple.security.inherit</key>
<true/>
</dict>
</plist>