ios - Undefined symbols for architecture i386: "SpeechKitApplicationKey" -


i followed every step on adding speechkit framework app, cannot work. after building app, following error:

undefined symbols architecture i386: "_speechkitapplicationkey", referenced from:   l069 in speechkit(libspeechkit.a-i386-master.o) ld: symbol(s) not found architecture i386 clang: error: linker command failed exit code 1 (use -v see    invocation) 

i added speechkit framework project-build phases-link binary libraries , have included necessary frameworks needed in order work:

  1. foundation
  2. system configuration
  3. audio toolbox
  4. cfnetwork
  5. avfoundation
  6. security

valid architectures, in bbuild settings armv7m armv7s arc64

you need define key in sources

 const unsigned char[] speechkitapplicationkey = {0x12, 0x34, ..., 0x89}; 

you need key before using library.

see documentation more details.


Comments

Popular posts from this blog

How has firefox/gecko HTML+CSS rendering changed in version 38? -

android - CollapsingToolbarLayout: position the ExpandedText programmatically -

Listeners to visualise results of load test in JMeter -