I try to integrate Fabric/Crashlytics via CocoaPods, my Podfile looks like this:
pod \'Fabric/Core\', \'1.2\'
pod \'Fabric/Crashlytics\', \'1.2\'
I had the same problem, use the $PODS_ROOT
environment variable which points to your Pods folder; be sure to quote it in case you have spaces in your path; so instead of
./Pods/Fabric/Fabric.framework/run YOUR_API_KEY YOUR_BUILD_SECRET
use
"$PODS_ROOT"/Fabric/Fabric.framework/run YOUR_API_KEY YOUR_BUILD_SECRET