I have trouble integrating Crashlytics into my project.
Having follow instruction on website. But soon after installing the Crashlytics mac app<
In the Build Phases of your target, click the + Add a Build Phase button in the bottom right and select Add Run Script. In the Crashlytics mac plugin, you should be given a run script to copy into this run script build phase. It will look like this:
./Crashlytics.framework/run
Except your api key will be a 40 digit number provided by the plugin.
in your app delegate:
#import
In didFinishLaunchingWithOptions
write the following line to start your Crashlytics session.
[Crashlytics startWithAPIKey:];
is the same number in the run script.