Can't lunch the app by command line

I’m trying to run my katalon test cases by command line but I’m getting the error:

Unable to start app at: '<MY APP PATH>' (Root cause: org.openqa.selenium.SessionNotCreatedException: Unable to create a new remote session. Please check the server log for more details. Original error: An unknown server-side error occurred while processing the command. Original error: simctl error running 'install': An error was encountered processing the command (domain=NSPOSIXErrorDomain, code=2):
2020-02-19T14:43:43.0444710Z Failed to install the requested application
2020-02-19T14:43:43.0445030Z An application bundle was not found at the provided path.
2020-02-19T14:43:43.0445340Z Provide a valid path to the desired application bundle.

where < MY APP PATH > is the path to my app until /appName.app

Also, how do I shutdown the simulator and kill the command line automatically after the execution finishes?

@hugo.lopes

2020-02-19T14:43:43.0445340Z Provide a valid path to the desired application bundle.

Is the app correct? Please check again.

If the app path is correct. You can manually run this command in terminal and share us the ouput:

xcrun simctl install <apppath>

I’ve checked the app path, it is correct. With the command ls -la verified the path and the .app dir exist.
Followed the suggestion of manually install the app with xcrun simctl install <device> <apppath> and got the same error

2020-02-20T11:46:24.3408450Z An error was encountered processing the command (domain=NSPOSIXErrorDomain, code=2):
2020-02-20T11:46:24.3509900Z Failed to install the requested application
2020-02-20T11:46:24.3612860Z An application bundle was not found at the provided path.
2020-02-20T11:46:24.3817940Z Provide a valid path to the desired application bundle.

Appium uses the above command to install the app on your device. You need to rebuild your app, check your app path is accessible or not.