user2854325
user2854325

Reputation: 35

VoiceLayer iOS obj c

I am integrating VoiceLayer library for "walk-talky" purpose in an app. I got the following error.

Undefined symbols for architecture arm64: "_utf8_nextCharSafeBody", referenced from: -[SRWebSocket _innerPumpScanner] in VoiceLayer(SRWebSocket.o)

Added voice layer library in Build Phases. -ObjC flag is there in Other Linker flags

Upvotes: 0

Views: 114

Answers (2)

user2854325
user2854325

Reputation: 35

added libicucore.dylib to my project and solved the build issue.

Upvotes: 0

Daij-Djan
Daij-Djan

Reputation: 50129

It seems the library doesn't offer 64bit ...

under Build Settings remove 64bit as a valid arch -- that should let you run it and make it work on any OS :)

enter image description here


be aware that 64bit is becoming mandatory for the App Store, so get an updated library

Upvotes: 1

Related Questions