ฉันพยายามที่จะรับรองแอปอิเล็กตรอนเพื่อให้ทำงานบน 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: แพคเกจอิเล็กตรอน - notarize กำลังโยนข้อผิดพลาดเดียวกัน