fix(rn): fix react warning about main thread setup

This commit is contained in:
Tiago Daniel Jacobs 2022-08-16 09:02:43 -03:00
parent e200c0e7e0
commit 7c6676d2c8
4 changed files with 13 additions and 7 deletions

View File

@ -11,6 +11,6 @@ class Constants {
public static var broadcastExtensionBundleId="org.bigbluebutton.tablet.sdk.example.03DE7B1E.BigBlueButtonTabletSdkBroadcastExample";
// This is used to allow both applications (main and broadcast) to share information
public static var appGroupName="group.corg.bigbluebutton.tablet";
public static var appGroupName="group.org.bigbluebutton.tablet";
}

View File

@ -1,11 +1,11 @@
PODS:
- bigbluebutton-tablet-sdk (0.1.0):
- bigbluebutton-tablet-sdk (0.1.30):
- bigbluebutton-tablet-sdk-common
- React-Core
- bigbluebutton-tablet-sdk-broadcast-upload-extension (0.1.0):
- bigbluebutton-tablet-sdk-broadcast-upload-extension (0.1.30):
- bigbluebutton-tablet-sdk-common
- WebRTC-lib
- bigbluebutton-tablet-sdk-common (0.1.0):
- bigbluebutton-tablet-sdk-common (0.1.30):
- WebRTC-lib
- boost (1.76.0)
- DoubleConversion (1.1.6)
@ -439,9 +439,9 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native/ReactCommon/yoga"
SPEC CHECKSUMS:
bigbluebutton-tablet-sdk: 75396b742cee8de39425235492859a8c966c5019
bigbluebutton-tablet-sdk-broadcast-upload-extension: 5e10242be5e7fd521fc1ea4b51f1d38c6d4b3487
bigbluebutton-tablet-sdk-common: edb98af2ffc59a1e2360b74569f69f8880960c3e
bigbluebutton-tablet-sdk: 33dabe9a50e2fb7b86bafb84df9ca4dffa285a6f
bigbluebutton-tablet-sdk-broadcast-upload-extension: 45c6c203b87ee9374149053b4c4e283633218516
bigbluebutton-tablet-sdk-common: 143b4f84f290b50b95076f7f26cfe56e6cc4fafe
boost: a7c83b31436843459a1961bfd74b96033dc77234
DoubleConversion: 831926d9b8bf8166fd87886c4abab286c2422662
FBLazyVector: a7a655862f6b09625d11c772296b01cd5164b648

View File

@ -12,4 +12,7 @@
RCT_EXTERN_METHOD(createFullAudioOffer)
RCT_EXTERN_METHOD(setFullAudioRemoteSDP: (NSString *)remoteSDP)
RCT_EXTERN_METHOD(addFullAudioRemoteIceCandidate: (NSString *)remoteCandidate)
+ (BOOL)requiresMainQueueSetup { return NO; }
@end

View File

@ -14,4 +14,7 @@ RCT_EXTERN_METHOD(initializeScreenShare)
RCT_EXTERN_METHOD(createScreenShareOffer)
RCT_EXTERN_METHOD(setScreenShareRemoteSDP: (NSString *)remoteSDP)
RCT_EXTERN_METHOD(addScreenShareRemoteIceCandidate: (NSString *)remoteCandidate)
+ (BOOL)requiresMainQueueSetup { return NO; }
@end