公证电子应用程序抛出-“您必须首先在线签署相关合同。(1048)”错误


15

我正在尝试对电子应用程序进行公证以使其在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,单击成员资格,然后向下滚动并单击协议。应该有一个许可协议和一个程序协议。接受协议,您的接受日期将在发布日期下注明。
理查德·巴伯

1
本文提到这对他们来说是一个暂时的故障davidebarranca.com/2019/04/…(公证已工作且在代码中
未做

1
因此,根据我的最新消息,我在Apple开发人员组织中的帐户不是“管理员帐户”,因此我看不到这些协议。而且,它们原来位于appstoreconnect.apple.com上。一旦我获得了具有管理员权限的团队成员来帮助我,他们便导航到appstoreconnect并接受了未决的法律协议。
Misha Reyzlin,

Answers:


21

TLDR:检查您的developer.apple.com帐户对您的组织具有管理员权限,然后转到https://appstoreconnect.apple.com/接受法律文档。

我还收到错误“错误:您必须首先在线签署相关合同。(1048)”。

导航到developer.apple.com成员资格或其他任何内容都没有提示。事实证明,我的Apple开发人员帐户在我们组织内没有“管理员”权限,我看不到法律提示,但是没有任何迹象表明。

在具有管理员访问权限的团队成员导航到https://appstoreconnect.apple.com/之后,有一个待接受的协议必须接受,该错误消失了。

UPD。评论建议协议也可以直接在https://appstoreconnect.apple.com/agreements/#上查看。


完成此操作后,我又收到一条提示,说“具有法律角色(帐户持有者)的用户必须查看并接受付费申请时间表”。因此,即使您不开发付费应用程序,帐户持有人也必须签署付费应用程序协议(appstoreconnect.apple.com/agreements/#)。
GavinoGrifoni

4
@Misha Reyzlin这是一个很大的帮助。所有我要做的就是填写并接受appstoreconnect.apple.com/agreements/#的“付费应用程序”协议
加尼甚Rathinavel

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.