HI AppWarp Team,
We've used your sdk in one of my multiplayer game. My app is getting crash each and every time if we try to logout form appwarp . Please check the below lines of code
UserService *userService =[[AppWarpHelper appWarpHelper] getUserService];
NSString *sessionId = playerProfile.userId;
NSLog(@"the session id is %@",sessionId);
[userService logout:sessionId completionBlock:^(BOOL success, id responseObj, App42Exception *exception) {
if (success)
{
App42Response *response = (App42Response*)responseObj;
NSLog(@"Response=%@",response.strResponse);
}
else
{
NSLog(@"Exception = %@",[exception reason]);
NSLog(@"HTTP error Code = %d",[exception httpErrorCode]);
NSLog(@"App Error Code = %d",[exception appErrorCode]);
NSLog(@"User Info = %@",[exception userInfo]);
}
}];
Crash report:
*** -[CFString isEqualToString:]: message sent to deallocated instance 0x7fdf35deee90
Thanks & Regards,
Vara Prasad.