Skip to content

Commit

Permalink
Merge pull request #25 from TeamOwori/feat/#11-firebase-console-설정
Browse files Browse the repository at this point in the history
feat/#11-firebase-console-설정
  • Loading branch information
bamin0422 authored Sep 24, 2023
2 parents c56c55d + 2003958 commit 7a86860
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 0 deletions.
8 changes: 8 additions & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ plugins {
alias(libs.plugins.kotlinAndroid)
alias(libs.plugins.kotlin.serialization)
alias(libs.plugins.kapt)
alias(libs.plugins.google.services)
alias(libs.plugins.firebase.crashlytics)
}

android {
Expand Down Expand Up @@ -82,4 +84,10 @@ dependencies {
implementation(libs.glide)
implementation(libs.glide.compiler)
implementation(libs.lottie)

implementation(platform(libs.firebase.bom))
implementation(libs.firebase.crashlytics)
implementation(libs.firebase.analytics)
implementation(libs.firebase.auth)
implementation(libs.play.service.auth)
}
2 changes: 2 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,7 @@ plugins {
alias(libs.plugins.kotlinAndroid) apply false
alias(libs.plugins.kotlin.serialization) apply false
alias(libs.plugins.kapt) apply false
alias(libs.plugins.google.services) apply false
alias(libs.plugins.firebase.crashlytics) apply false
}
true // Needed to make the Suppress annotation work for the plugins block
39 changes: 39 additions & 0 deletions google-services.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"project_info": {
"project_number": "191948284640",
"project_id": "owori-399116",
"storage_bucket": "owori-399116.appspot.com"
},
"client": [
{
"client_info": {
"mobilesdk_app_id": "1:191948284640:android:d0e8d4fd97b74529e3e685",
"android_client_info": {
"package_name": "com.android.owori"
}
},
"oauth_client": [
{
"client_id": "191948284640-jr0a7nhm5q4nfuoqd6ntst5mlsbbmj1f.apps.googleusercontent.com",
"client_type": 3
}
],
"api_key": [
{
"current_key": "AIzaSyA3fvxnGuuRPgrSI9HbX0jKFBoL6QqMrCQ"
}
],
"services": {
"appinvite_service": {
"other_platform_oauth_client": [
{
"client_id": "191948284640-06rle69o44vgdi1g77gtmijh0dqpvjjh.apps.googleusercontent.com",
"client_type": 3
}
]
}
}
}
],
"configuration_version": "1"
}
11 changes: 11 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ glide-version = "4.13.0"
lottie-version = "5.2.0"
workRuntimeKtx = "2.8.1"
gms = "4.3.15"
firebase-bom = "32.3.1"
firebase-crashlytics = "2.9.9"
google-services = "4.3.15"
play-service-auth = "20.7.0"

[libraries]
core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "core-ktx" }
Expand Down Expand Up @@ -59,12 +63,19 @@ glide-compiler = { group = "com.github.bumptech.glide", name = "compiler", versi
lottie = { group = "com.airbnb.android", name = "lottie", version.ref = "lottie-version" }
androidx-work-runtime-ktx = { group = "androidx.work", name = "work-runtime-ktx", version.ref = "workRuntimeKtx" }
identity-credential = { group = "com.android.identity", name = "identity-credential", version = "20230420" }
firebase-bom = { group = "com.google.firebase", name = "firebase-bom", version.ref = "firebase-bom" }
firebase-crashlytics = { group = "com.google.firebase", name = "firebase-crashlytics-ktx"}
firebase-analytics = { group = "com.google.firebase", name = "firebase-analytics-ktx"}
firebase-auth = { group = "com.google.firebase", name = "firebase-auth-ktx" }
play-service-auth = { group = "com.google.android.gms", name = "play-services-auth", version.ref = "play-service-auth" }

[plugins]
androidApplication = { id = "com.android.application", version.ref = "agp" }
kotlinAndroid = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
kotlin-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }
kapt = { id = "org.jetbrains.kotlin.kapt", version.ref = "kotlin" }
google-services = { id = "com.google.gms.google-services", version.ref = "google-services" }
firebase-crashlytics = { id = "com.google.firebase.crashlytics", version.ref = "firebase-crashlytics" }

[bundles]

0 comments on commit 7a86860

Please sign in to comment.