| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | |||||
| 3 | 4 | 5 | 6 | 7 | 8 | 9 |
| 10 | 11 | 12 | 13 | 14 | 15 | 16 |
| 17 | 18 | 19 | 20 | 21 | 22 | 23 |
| 24 | 25 | 26 | 27 | 28 | 29 | 30 |
- Recoil
- Each child in a list should have a unique "key" prop.
- react-native-dotenv
- vercel git lfs
- augmentedDevice
- Failed to compiled
- html
- silent printing
- ffi-napi
- rolldown
- animation
- electron-packager
- Git
- react-native
- npm package
- dvh
- ELECTRON
- custom printing
- github 100mb
- camera access
- nextjs
- github lfs
- camera permission
- adb connect
- device in use
- 이미지 데이터 타입
- 티스토리 성능
- Can't resolve
- adb pair
- github pdf
- Today
- Total
목록2023/09/18 (4)
Bleeding edge
npx @react-native-community/cli doctor //react-native 빌드 에러시 원인을 쉽게 파악하기 좋게 만들어주는 cli //사용 방법 react-native doctor npm install -g ios-deploy //Required for installing your app on a physical device with the CLI 에러 해결 keytool -exportcert -alias androiddebugkey -keystore /android/app/src/main/AndroidManifest.xml -storepass android -keypass android | openssl sha1 -binary | openssl base64 //현재 레포 키 해시..
npx kill-port //port 제거 npx clear-npx-cache //npx 캐시 정리 npx get-ip //현재 ip 보기 npx create-convention // 프로젝트 초기 세팅 만들기 npx cleanup-local-branches// 주요 브랜치를 제외하고 일괄 정리 npx knip //프로젝트 의존성 관리 git config --global push.default simple git push --force-with-lease origin feature ssh-keygen -t ed25519 //ssh key gen
export PATH=/opt/homebrew/bin:$PATH export PATH=${PATH}:$JAVA_HOME/bin export ANDROID_HOME=$HOME/Library/Android/sdk export PATH=$PATH:$ANDROID_HOME/emulator export PATH=$PATH:$ANDROID_HOME/tools export PATH=$PATH:$ANDROID_HOME/tools/bin export PATH=$PATH:$ANDROID_HOME/platform-tools eval "$(jenv init -)"
react-native에서 환경변수를 관리하는 라이브러리는 1. react-native-config 2. react-native 두 가지가 있습니다. react-native-config 같은 경우에는 초기 설정이 많이 있기 때문에, react-native-dotenv를 선택하였다. 1) install npm i react-native-config 혹은 yarn add react-native-config 2) babel config module.exports = { //... "presets": ["module:metro-react-native-babel-preset"], "plugins": [ ["module:react-native-dotenv", { "moduleName": "@env", "path":..