파이어베이스 콘솔 사이트의 Project Overview -> 설정 -> 프로젝트 설정
화면 아래의 내 앱에서 google-services.json을 다운 받아서 안드로이드 스튜디오 프로젝트의 app 하단에 파일을 카피한다.
카피가 완료 되었다면 각 build.gradle에 아래와 같은 내용을 삽입하고 동기화한다.
Project
// dependencies classpath 'com.google.gms:google-services:4.2.0' // all projects repositories { jcenter() google() .... }
app
apply plugin: 'com.google.gms.google-services' // dependencies implementation 'com.google.firebase:firebase-messaging:17.6.0' implementation 'com.google.firebase:firebase-core:16.0.8' ...
'Before 2022 > Android' 카테고리의 다른 글
USIM 관리 클래스 총정리(유심 체크, 번호 가져오기, 번호 포맷 통일) (0) | 2019.06.17 |
---|---|
Event Bus (0) | 2019.05.20 |
퍼미션 체크(권한 허용 요청) 커스텀 리스트 뷰 리팩토링 (0) | 2019.03.15 |
퍼미션 Enum으로 관리하기 (0) | 2019.03.13 |
안드로이드 사운드 기기 및 상태 관리(Kotlin) (0) | 2019.03.13 |