Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

XmppFramework I'm getting KissXml error

I'm getting this error Module 'KissXml' not found on XMPPFramework I couldn't solve this problem please help me! I setup XmppFramework like Github my Xcode version is 7.2

enter image description here

like image 364
Cenk Işık Avatar asked Feb 07 '16 21:02

Cenk Işık


2 Answers

I use CocoaPods at the beginning, but because of the need to modify the source code to meet certain requirements, so manually add XMPPFramework, but encountered all sorts of mistakes. One blogger noted, but I have solved the problem.

By replace

@import KissXml;

to

#import "DDXML.h"

Have a try~

like image 140
tianglin Avatar answered Oct 03 '22 03:10

tianglin


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

like image 20
Mani Singh Avatar answered Oct 03 '22 02:10

Mani Singh