728x90
반응형
Android 앱에 Firebase 추가하기
Firebase 프로젝트 생성은 하기 링크의 이전 글을 참고
2022.02.03 - [Develop/Firebase] - [Firebase] Firebase 프로젝트 생성
- 안드로이드 추가 아이콘 버튼을 클릭하여 시작한다.
- Firebase를 추가할 앱의 패키지명을 입력 앱 등록 버튼을 클릭한다.
- 친절하게 설명이 나온다.
- 설명대로 google-service.json파일을 다운로드하여 프로젝트 내의 app디렉터리에 복사한다.
- 복사 후 다음 설명을 보기위해 다음 버튼을 누른다.
- Project내의 build.gradle과 app내의 build.gradle에 하기 내용을 적용한다.
- 참고로 Android Studio Arctic Fox버전 이후에는 allprojects의 내용을 추가하게 되면 빌드 에러가 난다.
- 그 부분에 대한 자세한 내용은 다음에 포스팅하도록 하겠다.
- build.gradle내용을 다 작성하였다면 sync now버튼을 눌러 동기화한다.
- 프로젝트 내 build.gradle
buildscript {
repositories {
// Check that you have the following line (if not, add it):
google() // Google's Maven repository
}
dependencies {
// Add this line
classpath 'com.google.gms:google-services:4.3.10'
}
}
allprojects {
repositories {
// Check that you have the following line (if not, add it):
google() // Google's Maven repository
}
}
- App내의 build.gradle
apply plugin: 'com.android.application'
// Add this line
apply plugin: 'com.google.gms.google-services'
dependencies {
// Import the Firebase BoM
implementation platform('com.google.firebase:firebase-bom:29.0.4')
// Add the dependency for the Firebase SDK for Google Analytics
// When using the BoM, don't specify versions in Firebase dependencies
implementation 'com.google.firebase:firebase-analytics-ktx'
// Add the dependencies for any other desired Firebase products
// https://firebase.google.com/docs/android/setup#available-libraries
}
- 동기화까지 완료하였다면 콘솔로 이동을 눌러 완료하도록 한다.
- 추가 영상 참고 바랍니다.
728x90
반응형
'Develop > Firebase' 카테고리의 다른 글
[Firebase] Android FCM 전송 테스트 FirebaseConsole (0) | 2022.02.25 |
---|---|
[Firebase] Android FCM 전송 테스트 Postman (0) | 2022.02.25 |
[Firebase] FCM 안드로이드 적용하기 (0) | 2022.02.25 |
[Firebase] IOS 프로젝트에 Firebase 추가 (1) | 2022.02.10 |
[Firebase] Firebase 프로젝트 생성 (0) | 2022.02.03 |
댓글