Electron-Osx-Sign is breaking my app -


when run electron-osx-sign app no longer opens. can see in dock tries open split second, closes no error or warning. have how signing or entitlements?

cli:

sudo electron-osx-sign app.app --provisioning-profile=my.provisionprofile --entitlements=parent.plist --entitlements-inherit=child.plist

entitlements patent:

> <?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.application-groups</key> >     <string>"my team id here".com.site.app</string>   </dict> </plist> 

child:

<?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> 


Comments

Popular posts from this blog

python - How to insert QWidgets in the middle of a Layout? -

python - serve multiple gunicorn django instances under nginx ubuntu -

module - Prestashop displayPaymentReturn hook url -