From 85fdbe2c62e5e64f426612fc37ab2a205a1a641f Mon Sep 17 00:00:00 2001 From: Namyunsuk <84739562+Namyunsuk@users.noreply.github.com> Date: Mon, 5 Aug 2024 17:52:36 +0900 Subject: [PATCH] =?UTF-8?q?build:=20Firebase=EC=9D=98=EC=A1=B4=EC=84=B1=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80=20(#165)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- android/app/build.gradle.kts | 5 +++++ android/build.gradle.kts | 1 + 2 files changed, 6 insertions(+) diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index 98db38a29..5fd63fc3b 100644 --- a/android/app/build.gradle.kts +++ b/android/app/build.gradle.kts @@ -6,6 +6,7 @@ plugins { id("org.jetbrains.kotlin.android") id("de.mannodermaus.android-junit5") version "1.10.0.0" id("kotlin-kapt") + id("com.google.gms.google-services") kotlin("plugin.serialization") version "2.0.0" } @@ -144,4 +145,8 @@ dependencies { // WebView implementation("androidx.webkit:webkit:1.9.0") + + // Firebase + implementation(platform("com.google.firebase:firebase-bom:33.1.2")) + implementation("com.google.firebase:firebase-analytics") } diff --git a/android/build.gradle.kts b/android/build.gradle.kts index 3a3dc265f..41d0896fe 100644 --- a/android/build.gradle.kts +++ b/android/build.gradle.kts @@ -13,6 +13,7 @@ plugins { id("com.android.application") version "8.3.1" apply false id("org.jetbrains.kotlin.android") version "1.9.0" apply false id("org.jlleitschuh.gradle.ktlint") version "12.1.0" apply false + id("com.google.gms.google-services") version "4.4.2" apply false } allprojects {