-1

I'm trying to include the Ink/FP SDK in my iOS Project (I'm using XCode 5 Developer Preview 3) and the project is building fine prior to including the FPPicker Bundle and Framework, but after including I'm getting the following build error in my Test Project:

'SenTestingKit/SenTestingKit.h' file not found

Any ideas?

dougzor
  • 463
  • 1
  • 5
  • 8
  • I think this is specifically related to this SDK because I had the SenTesting framework already linked and working correctly before trying to include the Ink/FP SDK – dougzor Aug 02 '13 at 23:36

1 Answers1

0

It sounds like you're not including the SenTestingKit framework. I haven't used xcode 5 yet, but in 4, if you look at the project target under build phases, expand the link that says Link Binary With Libraries, you can click the "+" to add the SenTestingKit.framework. Doing the analogous operation in xcode 5 should resolve your error.

akhalsa
  • 2,303
  • 3
  • 25
  • 43