我正在尝试对电子应用程序进行公证以使其在macOS Catalina上运行。打包成功,但是xcrun altool
命令抛出“您必须首先在线签署相关合同。(1048)”错误。
电子应用程序package.json的内容:
"mac": {
"entitlements": "./build/entitlements.mac.inherit.plist",
"hardenedRuntime": true,
"type": "distribution",
"category": "public.app-category.productivity",
"icon": "build/icon.icns",
"target": [
"dmg",
"zip"
]
},
"dmg": {
"sign": false,
entitlements.mac.inherit.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>com.apple.application-identifier</key>
<string><app.bundle.name></string>
<key>com.apple.developer.team-identifier</key>
<string><TEAMID></string>
<key>com.apple.security.app-sandbox</key>
<true/>
<key>com.apple.security.application-groups</key>
<array>
<string><app.bundle.name></string>
</array>
<key>com.apple.security.network.client</key>
<true/>
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
<true/>
<key>com.apple.security.inherit</key>
<true/>
</dict>
</plist>
我运行了https://stackoverflow.com/a/53121755中提到的命令
xcrun altool --notarize-app -f App.dmg --primary-bundle-id app.bundle.name -u <username> -p <app-specific-password>
正在抛出您必须首先在线签署相关合同。(1048)错误。我无法继续进行应用签名。帮帮我!
ps:电子公证包会抛出相同的错误。
登录到您的Apple开发人员帐户,您应该能够批准协议。
—
理查德·巴伯
@RichardBarber有哪些协议,在哪里可以找到它们?
—
加内什·拉蒂纳维尔
转到developer.apple.com,单击成员资格,然后向下滚动并单击协议。应该有一个许可协议和一个程序协议。接受协议,您的接受日期将在发布日期下注明。
—
理查德·巴伯
本文提到这对他们来说是一个暂时的故障davidebarranca.com/2019/04/…(公证已工作且在代码中
—
未做
因此,根据我的最新消息,我在Apple开发人员组织中的帐户不是“管理员帐户”,因此我看不到这些协议。而且,它们原来位于appstoreconnect.apple.com上。一旦我获得了具有管理员权限的团队成员来帮助我,他们便导航到appstoreconnect并接受了未决的法律协议。
—
Misha Reyzlin,