react native - No apps connected. Sending "reload" to all React Native apps failed. Make sure your app is running in the simulator or on a phone connected via USB

이 에러는 여러 케이스에서 발생하는 것 같은데 그 중 내가 겪은 조건은 아래와 같았다.

스플래시를 만들려고 react-native-splash-screen 를 설치하고 ios 환경 설정을 하려고 AppDelegate.m 에서 [RNSplashScreen show]; 를 추가한 경우다.

나 같은 경우는 [RNSplashScreen show]; 를 추가하고 기존 super application: 을 그 아래에 넣었다.

[RNSplashScreen show];
[super application:application didFinishLaunchingWithOptions:launchOptions];
return YES;

하지만 [RNSplashScreen show]; 는 return YES; 바로 위에 넣어야 한다.

[super application:application didFinishLaunchingWithOptions:launchOptions];
[RNSplashScreen show];
return YES;

이렇게 하면 다시 정상 작동된다.

Subscribe
Notify of
guest

이 사이트는 스팸을 줄이는 아키스밋을 사용합니다. 댓글이 어떻게 처리되는지 알아보십시오.

0 댓글
Inline Feedbacks
View all comments
TOP