Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Hi there, I got it working on my m1 Macbook pro max. A few steps were necessary:

So, move your app to the Desktop, open a Terminal and cop and paste the commands.

On newer Macs you will most probably need the *sudo spctl --global-disable* version.

And don't forget to re-enable the gatekeeper afterwards.

```bash

# move your app to the Desktop

# disable Gatekeeper

sudo spctl --master-disable

# or

sudo spctl --global-disable # for newer os

# then enter passwort

# do some extended attribute changes

xattr -cr #<drag and drop app from Desktop in here>

# so xattr -cr appname

# re-enable Gatekeeper

sudo spctl --master-enable

# or

sudo spctl --global-enable

# move App back to Appliations

```