Skip to content

Commit

Permalink
feat: 파이어베이스 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
re4rk committed Jul 20, 2023
1 parent 0149349 commit c810156
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
3 changes: 2 additions & 1 deletion android/festago/app/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/build
/build
/google-services.json
5 changes: 5 additions & 0 deletions android/festago/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ plugins {
id("kotlin-parcelize")
id("kotlin-kapt")
kotlin("plugin.serialization") version "1.8.22"
id("com.google.gms.google-services")
}

android {
Expand Down Expand Up @@ -111,6 +112,10 @@ dependencies {

// zxing
implementation("com.journeyapps:zxing-android-embedded:4.3.0")

// firebase
implementation(platform("com.google.firebase:firebase-bom:32.2.0"))
implementation("com.google.firebase:firebase-analytics-ktx")
}

fun getSecretKey(propertyKey: String): String {
Expand Down
2 changes: 2 additions & 0 deletions android/festago/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,6 @@ plugins {
kotlin("android") version kotlinVersion apply false
kotlin("jvm") version kotlinVersion apply false
id("org.jlleitschuh.gradle.ktlint") version "11.1.0" apply false

id("com.google.gms.google-services") version "4.3.15" apply false
}

0 comments on commit c810156

Please sign in to comment.