react-native-opentok icon indicating copy to clipboard operation
react-native-opentok copied to clipboard

Screen Sharing PR causes problems building

Open kmiracle86 opened this issue 7 years ago • 2 comments

/node_modules/react-native-opentok/ios/RNOpenTokScreenSharingCapturer.m:133:1: Control reaches end of non-void function

In this block of code

/**
 * Dispatch lambda function to stop the queue from invoking handler block.
 */
- (int32_t)stopCapture
{
    _capturing = NO;
    dispatch_sync(_queue, ^{
        if (_timer) {
            dispatch_source_cancel(_timer);
        }
    });
}

kmiracle86 avatar Mar 11 '18 15:03 kmiracle86

Fixed in #98

kmiracle86 avatar Mar 12 '18 00:03 kmiracle86

I am seeing this same error now after trying to install the react native opentok package with the instructions here, https://github.com/callstack/react-native-opentok#installation

rptasznik avatar Jun 21 '18 19:06 rptasznik