본문 바로가기

Android3

[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.