Home 안드로이드 파이어베이스 최신버전 Gradle Kotlin 설정
Post
Cancel

안드로이드 파이어베이스 최신버전 Gradle Kotlin 설정

문제 상황

파이어베이스 사이트에서 알려주는 android studio gradle 연결 방법이 최신 버전과는 다르다

해결법

project 수준 gradle에는

1
2
3
plugins {
    id 'com.google.gms.google-services' version '4.3.13' apply false
}

을 추가 해주고

app 수준 gradle (gradle)에는

1
2
3
4
5
6
7
8
9
plugins {
    id 'com.google.gms.google-services'
}
dependencies {
    implementation platform('com.google.firebase:firebase-bom:30.3.1')
    implementation 'com.google.firebase:firebase-database:20.0.5'
    implementation 'com.google.firebase:firebase-analytics-ktx'
}

을 추가 해준다

This post is licensed under CC BY 4.0 by the author.