React-native 에러(error) 메세지 및 조치 collection
< React-native 에러 메세지 및 조치 >
--- 안드로이드 ---
* "Only the original thread that created a view hierarchy can touch its views."
* What went wrong:
A problem occurred configuring project ':app'.
> SDK location not found. Define location with sdk.dir in the local.properties file or with an ANDROID_HOME environment variable.
--> 프로젝트 root-android 위치에 local.properties 파일 생성.
< local.properties 파일 내용 >
sdk.dir=C\:\\Users\\__사용자명__\\AppData\\Local\\Android\\Sdk
* 에러메세지 : bundling failed: Error: Unable to resolve module `./../../react-transform-hmr/lib/index.js` from
https://github.com/facebook/react-native/issues/21530
조치 : I did react-native start --reset-cache
as proposed, and then in another terminal window I did react-native run-ios
and Problem Solved.
(안드로이드에서는 캐시 삭제 후 react-native run-android 입력)
* 에러메세지 : The development server returned response error code: 500
- 조치(성공) : 아래 관련 글 참조(성공)
[프로그래밍(Programming)/리액트 네이티브(React Native)] - react-native v0.57 에서의 virtual device 연동 오류 삽질 기록(성공)
* eact-native : 가상 디바이스에서 정상이던 app이 실물 디바이스 연결시 오류 발생
- 조치(성공) : 아래 관련 글 참조(성공)
[프로그래밍(Programming)/리액트 네이티브(React Native)] - react-native : 가상 디바이스에서 정상이던 app이 실물 디바이스 연결시 오류 발생
* react-native(리액트 네이티브) 크롬 브라우져 디버깅 에러 발생시
- 조치(성공) : 아래 관련 글 참조(성공)
[프로그래밍(Programming)/리액트 네이티브(React Native)] - react-native 크롬 브라우져 디버깅 에러 발생시
* react-native 프로젝트 폴더명 변경 관련 에러
- 조치(성공) : 아래 관련 글 참조(성공)
[프로그래밍(Programming)/리액트 네이티브(React Native)] - react-native 프로젝트 폴더명 변경 관련 에러
* ...
* ...