/ bin / sh :: No such file or directory Splunk MINT SDK

I am using BugSense using link http://docs.splunk.com/Documentation/MintIOSSDK/latest/DevGuide/Configureyourprojectforsymbolication

I added a script to set up server side symbology

SCRIPT = /usr/bin/find "${SRCROOT}" -name splunkmint_postbuild_dsym_upload_script.sh | head -n 1

/ bin / sh "$ {SCRIPT}" "API_KEY" "API_TOKEN"

but when i compile my project xcode gives

/ bin / sh :: No such file or directory

+3


source to share


1 answer


I got a solution. I didn't add SplunkMint.framework correctly, it was only a link, but not present in the package. After adding SplunkMint.framework link in bundle I set "-ObjC" and "-all_load" flag to another linker flag (in build setup) then compile. It works fine now.



+2


source







All Articles