Problems when sharing MAC OSX bundle

I made a game for MAC OSX and when I run the bundle for ARM 64 my Mac (M2 chi) runs it without any problem.
I compress the .app and send it over to my brother for him to try the game.

His Mac (M1 chip) and his lap (M2 chip) shows a message that says “App cannot be opened”

Any idea what may be causing this? or how can I solve it?

Best,

you have to notarize the app to share it:

1 Like

Hi thanks, so I was reading and I could’t fully understand this:

$ chmod +x Game.app/Contents/MacOS/Game

Do I have to do that in the terminal or within Defold?

1 Like

That command is a shell command, and you’d do that using the “Terminal” app.
However, the app should already be executable, our tools does that for you.

As Selim mentioned, you need to authorize the app (i.e. “sign” it) in order to run it on another computer. It’s a security thing.

OK thanks I’ll do that