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:
- foundation
- system configuration
- audio toolbox
- cfnetwork
- avfoundation
- 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
Post a Comment