admin管理员组

文章数量:1402832

After I used Electron and electron-builder to package the application and uploaded it to transporter, four warnings related to the application Helper appeared as follows.

"Cannot be used with TestFlight because the executable “myApp.app/Contents/Frameworks/myApp Helper (Plugin).app/Contents/MacOS/myApp Helper (Plugin)” in bundle “myApp.app/Contents/Frameworks/myApp Helper (Plugin).app” is missing a provisioning profile but has an application identifier in its signature. Nested executables are expected to have provisioning profiles with application identifiers matching the identifier in the signature in order to be eligible for TestFlight."

I'm not quite sure what this means. How should I deal with this issue? This is the configuration of my electron-builder.

mac:
  icon: build/icon.icns
  hardenedRuntime: true
  entitlements: build/entitlements.mac.plist
  entitlementsInherit: build/entitlements.mac.plist
  gatekeeperAssess: false
  notarize: {
    teamId: 457V4P8JCX
  }
  identity: "my identity"
  target:
    - target: mas
  extendInfo:
    CFBundleIconFile: icon.icns
dmg:
  artifactName: ${name}-${version}.${ext}
mas:
  icon: build/icon.icns
  category: public.app-category.utilities
  hardenedRuntime: true
  identity: "my identity"
  entitlements: build/entitlements.mas.plist
  entitlementsInherit: build/entitlements.mas.plist
  provisioningProfile: build/flowdayDesktopProfile.provisionprofile
  artifactName: ${name}-${version}.${ext}

I have no problem when packaging the DMG file. I can distribute and download it normally for use. If anyone knows how to modify this problem, I would be extremely grateful.

本文标签: