[Android] 구글 로그인
구현 기능 최대한 쉽고 간편하게 SSO 로그인을 구현하는 과정을 정리해보려고 합니다. 앱을 개발할 때 카카오, 구글 로그인을 대부분 적용하게 되었는데요. 매번 구글링하고, 급하게 기능을 구현하다보니 정리하는 과정이 필요할 것 같아서 포스팅하게 되었습니다. 의존성과 라이브러리 추가 buildscript { repositories { google() mavenCentral() } } 프로젝트 수준 build.gradle 파일에 Google의 Maven 저장소를 추가합니다. // Google Play services implementation 'com.google.gms:google-services:4.3.15' implementation 'com.google.firebase:firebase-auth:22.0..