We are using a little helper application for starting our main app after login. But we aren't able to launch our main app because LSOpenFromURLSpec() returns the error code -10827.
It doesn't matter if we are using:
[[NSWorkspace sharedWorkspace] launchApplication:@"/Applications/Appname.app"];
or:
[[NSWorkspace sharedWorkspace] launchApplication:@"Appname"];
It returns the error everytime. How can we fix that?