There are bugs in PluginUtilsIOS::callOCBoolFunctionWithName_oneParam and PluginUtilsIOS::callOCBoolFunctionWithName functions.
Instead of:
BOOL* pRet = (BOOL*)callRetFunction...(...);
if (nil != pRet) {
ret = pRet;
}
There should be:
NSNumber* pRet = (NSNumber*)callRetFunction...(...);
if (nil != pRet) {
ret = [pRet boolValue];
}