From 0ea5d22e392fc216a8fe987883be3800a0612a67 Mon Sep 17 00:00:00 2001 From: Lucas Lois Date: Mon, 14 Oct 2019 13:11:09 -0300 Subject: [PATCH] Adds requiresMainQueueSetup declaration --- ios/RCTSplashScreen/RCTSplashScreen/RCTSplashScreen.m | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ios/RCTSplashScreen/RCTSplashScreen/RCTSplashScreen.m b/ios/RCTSplashScreen/RCTSplashScreen/RCTSplashScreen.m index 278fefd..942ce95 100644 --- a/ios/RCTSplashScreen/RCTSplashScreen/RCTSplashScreen.m +++ b/ios/RCTSplashScreen/RCTSplashScreen/RCTSplashScreen.m @@ -92,4 +92,9 @@ - (NSDictionary *)constantsToExport }; } ++ (BOOL)requiresMainQueueSetup +{ + return YES; +} + @end