I installed Fabric using CocoaPods. My Podfile:
platform :ios, '8.0'
use_frameworks!
target '*****' do
pod 'GoogleMaps'
pod 'SwiftyJSON', :git => 'https://github.com/SwiftyJSON/SwiftyJSON.git'
pod 'Alamofire'
pod 'Google/Analytics', '~> 1.0.0'
pod 'Fabric'
pod 'Crashlytics'
end
target '****Tests' do
end
target '****UITests' do
end
post_install do |installer|
installer.pods_project.build_configuration_list.build_configurations.each do |configuration|
configuration.build_settings['CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES'] = 'YES'
end
end
Add a Run Script Build Phase
"${PODS_ROOT}/Fabric/run" ****
Build Settings - Enable Bitcode - NO
I did Clean and Build But I have mistake ld: framework not found Crashlytics clang: error: linker command failed with exit code 1 (use -v to see invocation)

Framework Search Pathssetting is? In the Build Settings of your target. - J.Wang$(inherited) "${PODS_ROOT}/Crashlytics/iOS" "${PODS_ROOT}/Fabric/iOS"to the list? - J.Wang