macOS Catalina에서 실행되도록 전자 응용 프로그램을 공증하려고합니다. 패키징에 성공했지만 xcrun altool
명령이 "먼저 온라인으로 관련 계약에 서명해야합니다. (1048)"오류가 발생합니다.
Electron 앱 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) 오류. 앱 서명을 진행할 수 없습니다. 도움!
추신 : 전자 공증 패키지가 같은 오류를 발생시킵니다.