You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using electron-builder to build distributables for my Electron app. Currently, app-builder is producing Info.plist files in binary format. This seems to be causing mas and mas-dev builds to crash at runtime. I'm not sure if there's any official documentation that states MAS builds should have XML formatted plists, but it is mentioned as necessary for entitlement plist files for notarization (see here).
I'm using
electron-builder
to build distributables for my Electron app. Currently,app-builder
is producingInfo.plist
files in binary format. This seems to be causingmas
andmas-dev
builds to crash at runtime. I'm not sure if there's any official documentation that states MAS builds should have XML formatted plists, but it is mentioned as necessary for entitlementplist
files for notarization (see here).I've detailed the steps I've taken to get working
mas
/mas-dev
builds here: electron/osx-sign#223 (comment).Changing the following:
app-builder/pkg/plist/plist.go
Line 47 in 0c35a47
to have
plist.XMLFormat
passed instead should do the trick, I hope.The text was updated successfully, but these errors were encountered: