Android 2

[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] 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