错误ITMS-90283:无效的配置文件。捆绑软件中包含的配置文件无效[缺少代码签名证书]

版本

  • 电子:5.0.1
  • 电子制造器:21.2.0
  • 电子公证:0.1.1
  • 电子网页包:2.7.4
  • 正在使用:MacOS Catalina 10.15

dmg文件运行正常。但是,当我尝试通过Transporter进行验证时,出现以下错误。

错误

错误ITMS-90283:无效的配置文件。捆绑软件中包含的配置文件无效[缺少代码签名证书]

构建配置

"build": {
    "appId": "<APP_ID>","productName": "<PRODUCT_NAME","copyright": "<COMPANY_NAME>","afterSign": "scripts/notarize.js","directories": {
      "buildResources": "resources","output": "release"
    },"mac": {
      "hardenedRuntime": true,"gatekeeperAssess": false,"category": "public.app-category.developer-tools","target": ["mas"],"icon": "resources/icon.icns","identity": "<IDENTITY>","provisioningProfile": "build/mac.provisionprofile","type": "distribution","electronLanguages": ["en"],"entitlements": "build/mac.plist","entitlementsInherit": "build/mac.plist"
    },"mas": {
      "hardenedRuntime": false,"provisioningProfile": "build/mas.provisionprofile","entitlements": "build/entitlements.mas.plist","entitlementsInherit": "build/entitlements.mas.inherit.plist"
    },"dmg": {
      "sign": false,"contents": [
        {
          "x": 130,"y": 220
        },{
          "x": 410,"y": 220,"type": "link","path": "/Applications"
        }
      ]
    },"files": [
      "dist/","node_modules/","app_prod.html","main.prod.js","main.prod.js.map","package.json","assets/"
    ],"win": {
      "target": ["nsis"]
    },"linux": {
      "target": ["deb","AppImage"],"category": "Development"
    }
},

notarize.js

require('dotenv').config();
const { notarize } = require('electron-notarize');

exports.default = async function notarizing(context) {
  const { electronPlatformName,appOutDir } = context;
  if (electronPlatformName !== 'darwin') {
    return;
  }

  const appName = context.packager.appInfo.productFilename;

  return await notarize({
    appBundleId: process.env.BUNDLE_ID,appPath: `${appOutDir}/${appName}.app`,appleId: process.env.APPLE_ID,appleIdPassword: process.env.APPLE_ID_PASS,});
};

mac.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.security.cs.allow-unsigned-executable-memory</key>
    <true/>
    <key>com.apple.security.network.client</key>
    <true/>
    <key>com.apple.security.files.user-selected.read-write</key>
    <true/>
    <key>com.apple.security.cs.allow-jit</key>
    <true/>
    <key>com.apple.security.cs.allow-dyld-environment-variables</key>
    <true/>
    <key>com.apple.security.cs.disable-library-validation</key>
    <true/>
  </dict>
</plist>

entitlements.mas.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.security.app-sandbox</key>
    <true/>
    <key>com.apple.application-identifier</key>
    <string>APPLICATION_ID</string>
    <key>com.apple.developer.team-identifier</key>
    <string>TEAM_ID</string>
    <key>com.apple.security.application-groups</key>
    <array>
      <string>BUNDLE_ID</string>
    </array>
    <key>com.apple.security.network.client</key>
    <true/>

    <key>com.apple.security.files.user-selected.read-only</key>
    <true/>

    <key>com.apple.security.files.downloads.read-write</key>
    <true/>

    <key>com.apple.security.files.user-selected.read-write</key>
    <true/>

    <key>com.apple.security.files.all</key>
    <true/>
    <key>com.apple.security.application-groups</key>
    <string>security</string>
  </dict>
</plist>



entitlements.mas.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.security.app-sandbox</key>
    <true/>
    <key>com.apple.security.inherit</key>
    <true/>
  </dict>
</plist>

我的证书

错误ITMS-90283:无效的配置文件。捆绑软件中包含的配置文件无效[缺少代码签名证书]

构建文件夹

错误ITMS-90283:无效的配置文件。捆绑软件中包含的配置文件无效[缺少代码签名证书]

配置文件

错误ITMS-90283:无效的配置文件。捆绑软件中包含的配置文件无效[缺少代码签名证书]

此外,还通过了Notarization步骤。这里缺少什么吗?

lilong19861 回答:错误ITMS-90283:无效的配置文件。捆绑软件中包含的配置文件无效[缺少代码签名证书]

我有same error message with a newer version of electron。对我来说真正的问题是,我有多个x.provisionprofile,而不是embedded.provisionprofile(如电子制造商的文档所述),因此使用了另一个,因此导致此错误。您可以在此处查看完整的源代码和构建设置: https://github.com/johannesjo/super-productivity

本文链接:https://www.f2er.com/3016998.html

大家都在问