If i sign up for the mac os x programming for apple can i make command line tools for my projects and put in the apple store?
If i sign up for the mac os x programming for apple can i make command line tools for my projects and put in the apple store?
2.15
Apps must be self-contained, single application installation bundles, and cannot install code or resources in shared locations
IIRC, you can sign command-line tools with your programmer key.
What do you mean?
He's just talking about signing your program so that it isn't blocked from running by GateKeeper. It's not related to your question about putting command line tools on the Mac App Store.
//main.m
NSArray *args = [[NSProcessInfo processInfo] arguments];
BOOL inGUIMode = TRUE;
inGUIMode = ![args containsObject: @"--myCommand"];
if (inGUIMode == FALSE)
{
CommandLineRunner *runner = [[CommandLineRunner alloc] init];
[runner runCommandLine];
} else {
return NSApplicationMain(argc, argv);
}
My other question which has more users on it IOS or mac?
thank for the tips![]()
If you're going to do a CLI app why not just put it in Homebrew?