0

I am new to iOS. For find the crash reports I am using Hockey app. I followed the same procedure in the given site "http://support.hockeyapp.net/kb/client-integration/hockeyapp-for-ios". But i got that error. Anybody can explain what is meaning of the following statement

"If you are already using a .xcconfig file, simply add the following line to it

include "../Vendor/HockeySDK/Support/HockeySDK.xcconfig"

(Adjust the path depending where the Project.xcconfig file is located related to the Xcode project package)"

Please give me solution Thanks in advance

cacau
  • 3,606
  • 3
  • 21
  • 42

2 Answers2

1

I bet you missed out this step, or didn't complete it properly:

10:

If you are getting build warnings, then the .xcconfig setting wasn't included successfully or its settings in Other Linker Flags get ignored because $(interited) is missing on project or target level. Either add $(inherited) or link the following frameworks manually in Link Binary With Libraries under Build Phases:

CoreText

CoreGraphics

Foundation

QuartzCore

SystemConfiguration

UIKit

trojanfoe
  • 120,358
  • 21
  • 212
  • 242
0

Have you added CoreText to your frameworks?

Build Phases - Link Binary With Libraries

And look for CoreText library

Antonio MG
  • 20,382
  • 3
  • 43
  • 62