Open .app folder on macos

I build my unity project on windows and now i have a .app folder, how can i open this on mac?

If you built it on Windows, you first need to add the execution permission bit to the executable via cmd line:

chmod +x /path/to/game.app/Contents/MacOS/<GameName>

After that, you should be able to just double click it.

1 Like

what i have to write in cmd? i have a folder like this: name.app that contains other folders

The command you need to execute is in my previous post. It starts with “chmod”.

1 Like