When I compile and sign my app with the following script that I wrote, then I am not able to run the app anymore. Without signing, it works, but when I do add the signing process, it crashes immediately.
This is the lldb output I get:
lldb BMM
(lldb) target create "BMM"
Current executable set to '/Users/skyline/Programming/balatro-mod-manager/src-tauri/target/release/bundle/macos/Balatro Mod Manager.app/Contents/MacOS/BMM' (arm64).
(lldb) process launch
error: process exited with status -1 (attach failed (Not allowed to attach to process. Look in the console messages (Console.app), near the debugserver entries, when the attach failed. The subsystem that denied the attach permission will likely have logged an informative message about why it was denied.))
And this is the script that I run:
#!/bin/bash
SIGN_IDENTITY=$(security find-identity -v -p codesigning | grep "Developer ID Application" | awk -F'"' '{print $2}')
APPLE_SIGNING_IDENTITY=$SIGN_IDENTITY
APPLE_CERTIFICATE="certificate-base64.txt"
APPLE_CERTIFICATE_PASSWORD="<my password>"
APPLE_ID="<my apple id>"
APPLE_PASSWORD="<my app-specific password>"
APPLE_TEAM_ID="<my team id>"
cd .. && make release
- Output of
codesign -dv --verbose=4 "Balatro Mod Manager_0.1.0_aarch64.dmg":
https://pastebin.com/QvnKEsZm - Makefile: https://pastebin.com/ND5AzHTj
Entitlements.plistandInfo.plistare also given.
Pastebin
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.
Pastebin
Pastebin.com is the number one paste tool since 2002. Pastebin is a website where you can store text online for a set period of time.