본문 바로가기

분류 전체보기181

[React Native] Unable to read the license file `LICENSE Error: Unable to read the license file `LICENSE 해결 방법 1. 프로젝트 ios 폴더에 pods 폴더 삭제 2. podfile.lock 파일 삭제 3. node_modules 삭제 4. npm install 5. pod install --repo-update 6. Xcode에서 project clean 2023. 1. 11.
[React Native] launchScreen에서 image가 안보일 때 LaunchScreen이 안보이는 경우 이미지 파일이 안보이는 경우 png파일을 폴더 내에 직접 추가해서 적용하면 보임 2022. 11. 6.
[React Native] iOS 앱 아이콘 안보임 iOS 앱 아이콘 에러 해결 앱 아이콘 설정을 모두 완료했는데도 안보인다면 아래 2가지를 체크해야 한다. 1. image파일의 에셋 우측에 target membership에 앱이 체크되어있는지 확인한다. 위 사진 제일 우측에 프로젝트이름의 앱이 체크되어있는지 확인한다. 만약 체크가 안되어있다면 체크를 해주고, 비활성화 상태라면 다음 단계를 진행해보자. 2. Copy Bundle Resources 가 있는지 확인한다. 프로젝트 > Targets > Build Phases 위 경로에서 Copy Bundle Resources가 있는지 확인한다. 이게 없다면 1단계에서 target membership에 앱을 체크할 수 없다. 이게 없다면 General 글자 밑에 + 버튼으로 추가하고, Image를 추가해주자. 2022. 10. 23.
RNSScreen" was not found in the UIManager npm install react-native-reanimated react-native-gesture-handler react-native-screens react-native-safe-area-context @react-native-community/masked-view 출처 https://stackoverflow.com/questions/66921263/invariant-violation-requirenativecomponent-rnsscreen-was-not-found-in-the-ui 2022. 10. 10.
We ran "xcodebuild" command but it exited with error code 65. 코코아팟 재설치 1. sudo gem uninstall cocoapods 2. sudo gem install cocoapods -v 1.10.2 3. cd ios pod update pod install 2. iOS 13으로 버전 수정 3. podfile에서 use_flipper 삭제 4. React Native 버전을 최상으로 업데이트 https://github.com/CocoaPods/CocoaPods/releases 2022. 10. 10.
[React Native] 안드로이드 서명 키 생성하기 (디버그 모드로 서명한 APK 또는 Android App Bundle을 업로드했습니다. 출시 모드로 APK 또는 Android App Bundle에 서명해야 합니다. ) 1. 터미널에서 android/app 폴더로 이동한다. cd "your project folder"/android/app 2. 아래 명령어를 통해 안드로이드용 서명 키(Signing Key)를 발급한다. keytool -genkey -v -keystore [your key-name].keystore -alias [your key alias] -keyalg RSA -keysize 2048 -validity 10000 Enter keystore password: Re-enter new password: What is your first and last name? [Unknown]: What is the name of your organizational unit? [Unknown]: What is the na.. 2022. 7. 17.