react-native 4

[React Native] Android 빌드 시 NDK 문제

리액트 네이티브 프로젝트를 git clone 받았는데 android 빌드할 때 NDK 관련 에러가 계속 났다. 특정 파일이 계속 없다고 그러길래 NDK파일이 있는 폴더를 검색해 봤다. 폴더에서 C:\Users\[userName]\AppData\Local\Android\Sdk\ndk\ userName부분만 본인으로 변경하고 검색하면 설치되어 있는 NDK 폴더가 나온다. 위 버전은 default로 설치되어 있던 NDK 버전이다. 그런데 이 폴더 내부로 들어가면 원인은 모르겠으나 전부 있어야 할 파일 중에 표시한 네 개의 파일만 존재했었다. 그렇다면 NDK를 재설치해주면 해결될 일이다. 안드로이드 스튜디오를 켜고 상단에 Tools -> SDK Manager -> SDK Tools를 들어간다. 하단에 Show ..

React-native 2023.12.16

[React Native] pod install 시 SDK "iphoneos" cannot be located 오류 해결

문제 맥북을 공장 초기화 하고 프로젝트를 clone 받아 pod install을 했더니 아래와 같은 에러를 만나게 되었다. [!] /bin/bash -c set -e #!/bin/bash # Copyright (c) Meta Platforms, Inc. and affiliates. # # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. set -e PLATFORM_NAME="${PLATFORM_NAME:-iphoneos}" CURRENT_ARCH="${CURRENT_ARCH}" ... xcrun: error: SDK "iphoneos" ..

React-native 2023.08.11

[React Native] react-native-splash-screen패키지 Android에서 SplashScreen.show(this, R.style.SplashScreenTheme) 적용 안 되는 문제

이 게시물을 보시는 분들은 react-native-splash-screen 패키지를 적용하고, README 문서대로 statusBar의 color를 바꾸는 작업을 진행하고 있을 거라고 생각이 듭니다. 아래는 라이브러리의 문서입니다. If you want to customize the color of the status bar when the splash screen is displayed: Create android/app/src/main/res/values/colors.xml and add Create a style definition for this in android/app/src/main/res/values/styles.xml: Change your show method to include you..

React-native 2023.08.01

[React Native] FBDefines/FBDefines.h not found

React Native Firebase 라이브러리를 설치하고 빌드할 때 xcode에서 이런 에러를 만나게 되었다. FBDefines/FBDefines.h not found FBDefines.h 파일은 Flipper라는 페이스북의 모바일 앱 디버깅 도구에서 사용하는 파일 중 하나이다. Flipper를 사용하고 있다면 위 에러를 만나지 않았을 수도 있었겠다. 위의 내용을 React Native Firebase 공식문서에서도 확인할 수 있다. React Native Firebase | React Native Firebase Welcome to React Native Firebase! To get started, you must first setup a Firebase project and install the..

React-native 2023.07.06