전체 글(95)
-
ReactNative) Expo-av 예제, 이슈발생 및 해결법
https://docs.expo.dev/versions/latest/sdk/audio/ Audio - Expo Documentation Expo is an open-source platform for making universal native apps for Android, iOS, and the web with JavaScript and React. docs.expo.dev 버튼을 누르면 클릭음이나 동물의 소리, 정답과 오답에 따른 등 다양한 소리를 출력해주는 기능이 필요했다 Expo-av 모듈으 사용하며 겪은 이슈와 해결법을 포함한 사용예제를 작성한다 설치 expo install expo-av 사용 import { Audio } from 'expo-av'; ..// const sound = new A..
2022.05.19 -
ReactNative) 파이어베이스 소셜로그인 (Apple)
6. 소셜 로그인 6-2 애플 로그인 더보기 Apple Starting April 2020, all existing applications using external 3rd party login services (such as Facebook, Twitter, Google etc) must ensure that Apple Sign-In is also provided. To learn more about these new guidelines, view the Apple announcement. Apple Sign-In is not required for Android devices. To integrate Apple Sign-In on your iOS applications, you need to inst..
2022.05.19 -
ReactNative) 파이어베이스 소셜로그인 (Google)
6. 소셜 로그인 6-1 구글 로그인 https://rnfirebase.io/auth/social-auth#google Social Authentication | React Native Firebase Copyright © 2017-2020 Invertase Limited. Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 3.0 License, and code samples are licensed under the Apache 2.0 License. Some partial documentation, under the rnfirebase.io 더보기 Google The g..
2022.05.14 -
GitHub 웹 포트폴리오 제작 - 3 : 기술 스택 뱃지 달기
https://simpleicons.org/ Simple Icons 2246 Free SVG icons for popular brands. simpleicons.org 위의 웹사이트를 참고해서 볼드 처리한 부분만 수정하면 된다 예시
2022.05.14 -
Git LFS ) 사용하기
깃허브는 업로드 파일이 50MB 이상일 경우 경고를 주고 100MB가 넘어가면 push가 안된다 대용량 파일 push를 위해서 Git LFS를 사용한다 https://github.com/git-lfs/git-lfs/wiki/Installation GitHub - git-lfs/git-lfs: Git extension for versioning large files Git extension for versioning large files. Contribute to git-lfs/git-lfs development by creating an account on GitHub. github.com 1. brew install brew install git-lfs 2.로컬 저장소에서 install git lfs ..
2022.05.14 -
GitHub) error: src refspec master does not match any
가끔 push할 때 이런 에러들이 발생한다 error: src refspec master does not match any error: failed to push some refs to 'https://github.com/repo~' 해결법 : git init git add . git commit -m "message" git push -u origin master
2022.05.14