


첫 화면에서 몇몇 모르는 부분이 나오는데 당황할 필요없다!!!
찬찬히 하나씩 확인해서 설정해보자!



파일을 추가하지 않는다면, 파이어베이스를 사용할 수 없다!! 꼭 넣자!!!!




안드로이드 스튜디오에 라이브러리를 설치하는 단계!!
Kotlin을 사용한다면 Kotlin DSL
Java를 사용한다면 Groovy
나는 Java를 사용하니 Groovy를 선택하겠다!
plugins {
// ...
// Add the dependency for the Google services Gradle plugin
id 'com.google.gms.google-services' version '4.4.0' apply false
}
plugins {
id 'com.android.application'
// Add the Google services Gradle plugin
id 'com.google.gms.google-services'
...
}
dependencies {
// Import the Firebase BoM
implementation platform('com.google.firebase:firebase-bom:32.3.1')
// TODO: Add the dependencies for Firebase products you want to use
// When using the BoM, don't specify versions in Firebase dependencies
implementation 'com.google.firebase:firebase-analytics'
// Add the dependencies for any other desired Firebase products
// https://firebase.google.com/docs/android/setup#available-libraries
}

