2021/09 3

리액트 네이티브 프로젝트를 안드로이드 플레이 콘솔 업로드 방법

업로드 키 생성 https://reactnative.dev/docs/signed-apk-android Publishing to Google Play Store · React Native Android requires that all apps be digitally signed with a certificate before they can be installed. In order to distribute your Android application via Google Play store it needs to be signed with a release key that then needs to be used for all future upd reactnative.dev Enter keystore passwo..

코딩배우기 2021.09.29

React Native React Navigation Redux Reduxpersist with Typescript (+Jest)

보일러 플레이트를 사용하면 좋겠지만, 리덕스에 익숙하기 때문에 정리하는 의미에서 아래 순서대로 설치를 해보도록 하겠습니다. 1. React Native (0.65) with Typescript RN 템플렛을 사용할 경우 npx react-native init MyApp --template react-native-template-typescript expo bare work flow 를 사용할 경우 expo init --template expo-template-bare-typescript --name MyApp 2. React Navigation 설치 yarn add @react-navigation/native 디펜던시 설치 yarn add react-native-screens react-native-sa..

코딩배우기 2021.09.20

adb: command not found 해결 방법

앱 개발 때처럼 안드로이드 스마트폰을 컴퓨터에 연결하여 제어할 때, ADB devices 명령을 입력하고 adb : command not found 이 나왔을 때는, export PATH=$PATH:/Users/사용자명/Library/Android/sdk/platform-tools 를 입력합니다. 나의 경우는 export PATH=$PATH:/Users/tagi/Library/Android/sdk/platform-tools 이렇게 입력을 했습니다. 입력 후 디바이스가 연결이 됐는지 확인 할 경우에는 adb devices 로 확인할 수 있습니다.

코딩배우기 2021.09.10