This is no longer mantained. Please use official Pod from Fabric.
- Fabric.framework v1.1.1
- Crashlytics.framework v2.2.9
- TwitterKit.framework v1.2.0
- MoPub.framework v3.3.0
- Use official Fabric app to add components you need
- Remove all frameworks from project which were added by Fabric app
- Add pods
pod 'Fabric/Crashlytics', '~> 1.1.1'
pod 'Fabric/MoPub', '~> 1.1.1'
pod 'Fabric/Twitter', '~> 1.1.1'
- Change path in Run Script Build command to:
./Pods/Fabric/Fabric.framework/run <your organization API key> <your organization build secret>
If you only need Crashlytics you can also install it without app:
- Add pods (see above)
- Add Run Script Build Phase (see http://www.runscriptbuildphase.com) and paste
./Pods/Fabric/Fabric.framework/run <your organization API key> <your organization build secret>
You can get your organization API key and build secret from organization settings page (https://fabric.io/settings/organizations).
- Add the following to your project's Info.plist:
<key>Fabric</key>
<dict>
<key>APIKey</key>
<string><your organization API key></string>
<key>Kits</key>
<array>
<dict>
<key>KitInfo</key>
<dict/>
<key>KitName</key>
<string>Crashlytics</string>
</dict>
</array>
</dict>