만족

[React Native] 프로젝트 생성 및 샘플 실행 본문

[React Native] 프로젝트 생성 및 샘플 실행

FrontEnd/React Native Satisfaction 2020. 8. 17. 21:15

npm config set save-exact=true

우선 위의 명령어를 이용하여 버전이 꼬이는 현상을 방지해준다.

 

//react-native init [PROJECT-NAME]
react-native init MyProject

위의 명령어를 이용해 프로젝트를 만들고 초기화한다

 

//cd [PROJECT-NAME]
cd MyProject

만든 프로젝트로 이동하고

 

react-native run-ios //아이폰 앱 실행
react-native run-android //안드로이드 앱 실행

위의 명령어로 생성된 예제 프로젝트를 실행해볼 수 있다

 

이제부터는 아래의 공식 홈페이지 문서를 보고 필요한 것을 찾아 사용하면 된다.

 

https://reactnative.dev/docs/getting-started

 

React Native · A framework for building native apps using React

A framework for building native apps using React

reactnative.dev

Could not find tools.jar

macOS BigSur 업데이트 후 react-native android 가 오류를 출력한다면, 아래 링크를 참조해 프로젝트를 수정해줘야 한다.

 

https://lee-it-alls.tistory.com/35

 

MacOS Big Sur 업데이트후 RN Android 빌드 에러 (MacOS)

Big Sur 업데이트후에 React-Native Android Gradle 빌드시 아래와 같은 에러가 발생한다. * What went wrong: Execution failed for task ':react-native-community_async-storage:compileDebugJavaWithJavac'. >..

lee-it-alls.tistory.com

 



Comments