I integrating my app with speechkit of naunce dragon mobile when run i am below error:
Undefined symbols for architecture armv7:
\"_kCFStreamPropertySSLPee
Sorry for the late reply. I just solved this issue myself.
H2C03 is close, but it's actually CFNetwork.Framework and Security.framework that you need.
It's unfortunate the Speech Kit Basics walkthrough in the Dragon docs only shows that you need UIKit.framework, Foundation.framework, CoreGraphics.framework, AudioToolbox.framework, SystemConfiguration.framework, and SpeechKit.framework. It's a little misleading.
If you open up the DragonMobileRecognizer sample project you can compare the frameworks it uses to yours and see what you're missing.
It seems you haven't added CFNetwork.Framework
, SystemConfiguration.Framework
and Security.Framework
to your project. Add them in Xcode at the "libraries to link" section, and everything should be fine.