회사에서 작업한 ReactNative 에 대해 알아본것들을 대충 적어본것이다
나중에 다시 시작할때 바로 확인해서 유용하게 도움이 될 수 있도록 해놓았당
React Native 새로 설정할때 참고한 사이트
https://velog.io/@chloedev/React-Native-리액트-네이티브-개발-환경-구축하기Mac
https://dchkang83.tistory.com/215
https://lucidmaj7.tistory.com/252
adb 설정방법
https://it-highjune.tistory.com/112
adb 를 이용한 무선 디버깅 연결
코드푸시 관련한 유용한 사이트
1. https://velog.io/@minwoo129/React-Native%EC%97%90%EC%84%9C-CodePush-%EC%82%AC%EC%9A%A9%ED%95%98%EA%B8%B0
2. https://velog.io/@beanlove97/%EB%B2%88%EC%97%AD-react-native-code-push
React Native 시작 및 설정시 npm 노드 명령어
- react-native start --reset-cache
- npm start -- --reset-cache
- rm -rf package-lock.json
- rm -rf node_modules && rm -rf ~/.rncache
- npm install --save-exact
React Native Android firebase 실행 명령어
adb shell setprop debug.firebase.analytics.app <패키지이름>
React Native Android / IOS 빌드 명령어
(npx) react-native run-android --variant=release
(npx) react-native run-ios --device 기기이름 --configuration Release , Staging
React Native package-lock.json 버전에 맞추어 npm Install 명령어
Npm ci
React Native IOS Push setting 유용한 사이트
React Native apple Login 유용한 사이트
React Native CodePush 사이트
React Native TypeScript 전환 사이트 및 레퍼런스 사이트
https://minify.tistory.com/28?category=704381
https://reactnative.dev/docs/touchableopacity
React Native CodePush 설정 관련 사이트
https://github.com/microsoft/react-native-code-push
React Native Typescript 로 프로젝트 생성 명령어
https://github.com/react-native-community/react-native-template-typescript
React Native - Swift 연동
https://teabreak.e-spres-oh.com/swift-in-react-native-the-ultimate-guide-part-1-modules-9bb8d054db03
'ReactNative' 카테고리의 다른 글
ReactNative_ 버전에러 (0) | 2024.03.05 |
---|---|
ReactNative_ IOS 빌드 환경 분리 (0) | 2024.03.04 |
ReactNative_ AOS 의 빌드 환경 분리 (0) | 2024.03.04 |
ReactNative_ UserAgent 의 사용 (0) | 2024.03.04 |
ReactNative_ 여러개의 파일 작업 후 비동기식 렌더링 (0) | 2024.03.04 |