안드로이드 스튜디오를 돌핀으로 업그레이드 후 FireBase를 적용하려고 기존 북극여우 버전에서는 문제없는데
돌핀에는 Firebase 사이트에 있는 방법으로 하면 오류가 발생하여 돌핀버전에 적용하는 방법을 정리해둔다.
- google-services.json 파일은 기존 방법대로 적용한다.
-
Project- build.gradle 오픈하여
//아래 firebase용 추가 시작 buildscript { repositories { // Make sure that you have the following two repositories google() // Google's Maven repository mavenCentral() // Maven Central repository } dependencies { // Add the dependency for the Google services Gradle plugin classpath 'com.google.gms:google-services:4.3.13'
// classpath "com.android.tools.build:gradle:7.0.2"
// classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10"
} } //아래 firebase용 추가 끝
- Module- build.gradle 오픈하여
— plugind 부분에 아래 1줄 추가
id ‘com.google.gms.google-services’
— dependencies 부분에 아래 2줄 추가
implementation platform(‘com.google.firebase:firebase-bom:31.0.2’)
implementation ‘com.google.firebase:firebase-analytics-ktx’
댓글