React Native/Error20 [React Native] {"_x":0,"_y":0,"_z":null,"_A":null} 해결법 날 한시간이나 괴롭힌 자식 {"_x":0,"_y":0,"_z":null,"_A":null} {"_A": null, "_x": 0, "_y": 0, "_z": null} 이 두녀석 해결법 1) 함수에 async / await을 사용한다. 2) 함수를 호출하고 then을 붙여서 결과를 리턴한다 2023. 3. 11. [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. 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] FlatList에 Mobx를 쓰면 발생하는 에러 (Out of bounds read: ) 1. 에러 상황 FlatList data에 mobx로 받아온 배열을 넣어주면 Out of bounds read 에러가 발생합니다. 2. 에러 원인 이유를 찾아보다가 잘 정리된 글을 발견했습니다. FlatList는 배열에 저장된 값들을 읽어서 렌더링하는 역할을 하는데요. 위 에러는 FlatList가 읽을 수 없는 형태의 배열이 들어왔을 때 나타납니다. mobx에 저장된 배열은 일반 형태의 배열이 아니라고 합니다. @observable users: Array = [] //또는 users: Array = observable([]) 위 2개의 형태 중 하나로 정의되기 때문에 FlatList가 읽을 수 없다고 합니다. 3. 해결 방법 mobx의 배열에 .slice()를 붙혀주면 됩니다. // 에러 발생 // 해결.. 2022. 1. 17. [React Native / Android 에러 해결] java.lang.OutOfMemoryError (no error message) 1. 에러 상황 안드로이드를 빌드하던 중 메모리 관련 에러 발생 2. 해결 방법 android.gradle.properties 파일에 아래 코드를 추가해주면 된다. org.gradle.jvmargs=-Xmx4608m 끝! 2022. 1. 14. 이전 1 2 3 4 다음