The conflicting package is most likely AFNetworking
, it can be found in the build log you posted (at line 7, duplicate symbol _OBJC_IVAR_$_AFQueryStringPair._field in:
.., googling for AFQueryStringPair
leads you quickly into AFNetworking related places).
The offending symbol is declared here.
Does Sonic SDK embed AFNetworking
by any chance?
It that's the case you might be lucky enough to be able to use the AFNetworking
embedded in Sonic SDK, making the problem go away by simply dropping your own dependency on AFNetworking
. If AFNetworking
is a downstream dependency of one of your other dependencies it will be a bit more tricky. But at least you know where to look.
Edit: Since you have tagged the question with RESTKit
too, that might be a more likely culprit than Sonic SDK (see e.g. this) thread.