I setup teamcity for daily builds and everything seemed to work some time ago (I was able to see crash reports in crashlytics dashboard). But now build machine is not sending dsyms at all. I added Crashlytics from CocoaPods:
pod 'CrashlyticsFramework', '~> 2.2'
I have tripple checked api key and secret. Here's my run script:
./Pods/CrashlyticsFramework/Crashlytics.framework/run <myKey> <mySecret>
In teamcity build logs, I can see script was executed:
2015-02-02 18:01:43.511 run[7213:507] Crashlytics.framework/run 1.3.11
But I don't see any log entry about DSYM being uploaded to Crashlytics like Hudson shows. So, if I make a build directly to device from Xcode then it shows the crash (and probably sends DSYM). But if it's made through build machine then dsym is not send. I know that because I see missing dsym with the build version when I go to crashlytics dashboard. Any ideas how to debug or see log why DSYMs are not sent?