CODE-SIGN : Main app doesn't allows to execute external executable using sub-process from inside the main app

I build an Mac OSX app that runs fine without codesign on my Mac PC but when I am codesiging my Main app for submission on Apple store which ends with .app extension with following entitlements keys its not running properly.

<key>com.apple.security.app-sandbox</key>

<true/>

<key>com.apple.security.files.downloads.read-write</key>

<true/>

<key>com.apple.security.files.user-selected.read-write</key>

<true/>

<key>com.apple.security.files.user-selected.executable</key>

<true/>

<key>com.apple.security.network.client</key>

<true/>

<key>com.apple.security.network.server</key>

<true/>


After succesfully code sign Main app doesn't allow to execute an external executable file from inside my Main app but it allow without codesign.


Help me if there is any specific entitlement key that allow executaion of external executable from inside my Main app.

CODE-SIGN : Main app doesn't allows to execute external executable using sub-process from inside the main app
 
 
Q