본문 바로가기

개발/RN5

React Native에 AWS Amplify 설정하기 로그인 https://github.com/aws-samples/aws-amplify-auth-starters/blob/react-native/src/nav/auth/Auth.js https://dev.to/bastianbavaresco/social-authentication-with-aws-amplify-and-react-native-18op 이름 얻기 https://github.com/aws-amplify/amplify-cli/issues/2534 아래 Getting Started를 참고했다. https://aws-amplify.github.io/docs/js/start?platform=react-native Getting Started Create a new ‘plain’ JavaScript ES20.. 2020. 2. 10.
[2/15] react native에 aws amplify를 붙여보자 AWS Amplify를 사용해서 Social Login이 되는 React Native App을 만들어보자! AWS Amplify - Amplify project 생성, auth 설정 아래 링크를 참고 했다. https://dev.to/aws/the-complete-react-native-guide-to-user-authentication-with-the-amplify-framework-ib2 The Complete React Native Guide to User Authentication with the Amplify Framework An in depth guide for adding authentication to your next mobile app using React Native and AWS .. 2020. 1. 28.
[1/18] 1 .새 프로젝트 생성 환경설정이 끝났으니 workspace를 만들어보자 react native가 필요한 패키지를 다 설치해주기 때문에 명령어 한줄로 끝 npx react-native init SelfPraise 그럼 SelfPraise라는 폴더가 생기면서 생성 완료~ 아래 폴더와 파일들이 생긴다. 굵은 글씨가 폴더. . ├── App.js ├── __tests__ ├── android ├── app.json ├── babel.config.js ├── index.js ├── ios ├── metro.config.js ├── node_modules ├── package.json └── yarn.lock 안드로이드로 실행하려면 아래 명령어 복붙하면 된다 npx react-native run-android 30초 정도 기다리니 에뮬.. 2020. 1. 18.
[1/18] 0. 환경 설정 React Native로 Android 앱을 개발해보자! 제일 중요한 개발 환경 설정 고고 React Native 공식 문서를 참고해서 환경 설정을 진행했다. https://facebook.github.io/react-native/docs/getting-started React Native · A framework for building native apps using React A framework for building native apps using React facebook.github.io 하드웨어 스펙 : Macbook 12(Early 2016) Catalina 10.15.1 설치 목록 이미 설치한 package - npx : 6.11.3 - node : 12.4.0 - watchman : 4.. 2020. 1. 18.
[RN-iOS] RN 설치 0. 개발 환경 - MacBook Catalina 10.15.1 - React Native 0.61.5, iOS - npx 6.11.3 - Xcode 11.2 1. 설치 및 새 프로젝트 생성 공식 문서를 참고한다 https://facebook.github.io/react-native/docs/getting-started 프로젝트 생성 $ npx react-native init SelfClap 2. iOS Simulator 실행 cd /Users/ny/work/SelfClap && npx react-native run-ios 무사히 실행되었다! 2020. 1. 6.