XmppFramework I get a KissXml error

I get this error Module 'KissXml' not found in XMPPFramework I could not solve this problem, please help me! I am configuring XmppFramework as Github my Xcode version 7.2

enter image description here

+5
source share
2 answers

I use CocoaPods at the beginning, but because of the need to change the source code to meet certain requirements, so manually add XMPPFramework, but meet all kinds of errors. One blogger noted, but I solved the problem.

Replacing

 @import KissXml; 

to

 #import "DDXML.h" 

Try it ~

+2
source

If you change your @import KissXML to #import "KissXML.h" and @import CocoaAsyncSocket to #import "CocoaAsyncSocket / GCDAsyncSocket.h". Your problem must be resolved.

0
source

Source: https://habr.com/ru/post/1242497/


All Articles