Ben Smiley
Ben Smiley
I found the cause of this issue: ``` size_t superSize = class_getInstanceSize([NSXMLElement class]); size_t ourSize = class_getInstanceSize([BXMPPvCardTempEmail class]); if (superSize != ourSize) { XMPPLogError(@"Adding instance variables to BXMPPvCardTempEmail is not...
It looks like the above check isn't very reliable. Having properties that return different types affects the instance size. So The `XMPPvCardTempAdrTypes` is size 24 because it just has string...
It seems that this issue can be solved by using getter and setter methods instead like: ``` - (NSString *)userid; - (void)setIsUserid:(NSString *)userid; ``` Instead of: ``` @property (nonatomic, assign,...
I also think that the following code: ``` NSLog(@"Super size must match our size"); assert(superSize == ourSize); ``` Would be better in the check because it would make debugging easier.
@abhinavkumar17 this error is coming from a project called: ``` com.comminication.chat.mesanger ``` Which means that it's not the demo project... Maybe you have integrated this with your own project? Can...
At the moment that isn't possible. I can add it as a feature request. Or if you would be interested in adding the feature, I could merge review and merge...
Please follow the issue template and also give an example of your Chat SDK initialisation code.
Hi @andreamendoza000 we do have an XMPP file upload module for iOS but currently not for Android. If you needed this it would be a custom development and would cost...
@KhyatiMehta3 in this case, I don't know if I would use Chat SDK. The SDK has a lot of things you don't need and achieving what you need, would be...
Hi @KhyatiMehta3 if you are planning to also include messaging features in your app then you could use it. From what you said, I thought you just wanted a chat...