I'll open Safari, other system apps and third-party apps with codes like:
let task = NSTask()
task.launchPath = "/usr/bin/open"
task.arguments = ["Safari"]
task.launch()
will it be rejected by MAS review?
I know there is recommended way by Apple which leverages Apple Script and com.apple.security.scripting-targets. But it's so weak now.
Thanks