fix: arm64 now builds locally

we still have an issue with building on ci
pull/3093/head
William Grant 11 months ago
parent 4eafe8c68c
commit cd6f7f8189

@ -5,6 +5,8 @@
<!-- Mac distribution --> <!-- Mac distribution -->
<key>com.apple.security.cs.allow-unsigned-executable-memory</key> <key>com.apple.security.cs.allow-unsigned-executable-memory</key>
<true/> <true/>
<key>com.apple.security.cs.allow-jit</key>
<true/>
<key>com.apple.security.cs.disable-library-validation</key> <key>com.apple.security.cs.disable-library-validation</key>
<true/> <true/>
<key>com.apple.security.device.audio-input</key> <key>com.apple.security.device.audio-input</key>

@ -5,6 +5,10 @@
<!-- Mac app store --> <!-- Mac app store -->
<key>com.apple.security.app-sandbox</key> <key>com.apple.security.app-sandbox</key>
<true/> <true/>
<key>com.apple.security.cs.allow-unsigned-executable-memory</key>
<true/>
<key>com.apple.security.cs.allow-jit</key>
<true/>
<key>com.apple.security.network.client</key> <key>com.apple.security.network.client</key>
<true/> <true/>
<key>com.apple.security.files.user-selected.read-only</key> <key>com.apple.security.files.user-selected.read-only</key>

@ -29,7 +29,7 @@ exports.default = async function notarizing(context) {
} }
const options = { const options = {
appBundleId: 'org.getsession.desktop', appBundleId: 'com.loki-project.messenger-desktop',
appPath: `${appOutDir}/${appName}.app`, appPath: `${appOutDir}/${appName}.app`,
appleId: SIGNING_APPLE_ID, appleId: SIGNING_APPLE_ID,
appleIdPassword: SIGNING_APP_PASSWORD, appleIdPassword: SIGNING_APP_PASSWORD,

Loading…
Cancel
Save