-
React Native 2023‧11‧04
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]; 는 return YES; 바로 위에 넣어야 한다. 이렇게 […]
-
iOS 2023‧05‧21
xcode archive 진행 오류 : Error Finding App Store Connect Credentials
앱을 빌드 후 앱스토어에 올리는 과정에 이런 오류가 떴다. Error Finding App Store Connect Credentials App Store Connect access for “insik nam” is required. Ensure that your Apple ID account usernames and passwords are correct in the Accounts preference pane. Please try again, and if issue persists file a bug report at "https://feedbackassistant.apple.com." 원인은 너무 […]
-
React Native 2023‧02‧24
리액트 네이티브 커스텀 폰트 적용하기 (iOS, Android)
커스텀 폰트는 otf 파일이든 ttf 파일이든 상관없다.otf로 넣었다가 파일 지우고 ttf로 다시 넣으려고 할 경우 빌드 실패하면서 The following build commands failed: CpResourc ~~~~ 이런식으로 오류가 뜨기도 한다. 또는 unrecognized font family '폰트명' 이런식으로 제대로 적용되지 않은 경우도 있다. 위 경우를 다 겪고 나서 하나하나 다시 살펴보고 과정을 담아봤다. iOS 1. 프로젝트 폴더에 assets/fonts 폴더 […]
-
iOS, React Native 2023‧01‧14
xcode build failed - module map file '/Users/...생략 .../Build/Products/Debug-iphoneos/YogaKit/YogaKit.modulemap' not found
리액트 네이티브로 만든 앱을 폰 빌드 하려고 기기를 선택하고 빌드하니 계속 이런 빌드 실패 에러가 떴다. 분명 어제까지 잘된거 같은데 왜 그럴까 하다가 검색하니 아 ... 빌드를 [프로젝트 이름.xcodeproj] 파일이 아닌 [프로젝트 이름.xcworkspace] 으로 빌드를 하면 되는 것이다. 아직 앱 개발 초반이다 보니 헷갈리는게 많다. .xcworkspace 으로 빌드하니 오류 없이 정상적으로 폰 빌드 되었다.