목록Native (3)
컴공생의 다이어리
Mac react native 개발 환경 구축 아래 블로그 게시물을 참고해서 따라가면 개발환경 구축을 어렵지 않게 할 수 있을 것이다. 한가지 미리 했으면 하는 것은 맥 OS 업데이트를 미리 하고 개발환경을 구축하는 것이 좋을 것 같다. 이유는 XCode 때문이다. 전에 한번 OS 버전이 낮아서 설치가 되지 않아서 헤매다가 설정 다 이상하게 바꿔놓아서 초기화한 적이 있었기 때문이다. 맥(Mac)에 react native 개발 환경 구축하기 react-native로 앱을 개발하기 위해 맥(Mac)에 개발 환경을 구축해 보고, react-native로 생성한 프로젝트가 잘 동작하는지 확인해 봅니다. dev-yakuza.posstree.com 그리고 위 블로그 게시물 중에 brew cask install ad..
react native error Failed to launch emulator. Reason: No emulators found as an output of emulator -list-avds 에러 mac으로 react native 프로젝트에서 android 시뮬레이터를 돌리려고 할 때 가끔씩 error Failed to launch emulator. Reason: No emulators found as an output of emulator -list-avds 오류가 발생했다. 나의 경우 terminal에 아래 명령어를 입력해주면 다시 잘 작동했다. source ~/.bash_profile
react native 경고창(warning) 숨기기 react native 코드를 작성후 시뮬레이터를 돌렸을 때 나오는 경고창을 숨기려면 index.js 파일에 아래 코드를 마지막에 삽입해주면 된다. console.disableYellowBox = true; https://machine-woong.tistory.com/280 리액트 네이티브 경고창 숨기기 render(){ console.disableYellowBox = true; } machine-woong.tistory.com