Skip to content

Commit 947fef6

Browse files
committed
google-service 추가 및 firebase 연동
1 parent e4cbc45 commit 947fef6

File tree

5 files changed

+23
-1
lines changed

5 files changed

+23
-1
lines changed

app/build.gradle.kts

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ plugins {
22
alias(libs.plugins.depromeet.team5.application)
33
alias(libs.plugins.depromeet.team5.application.compose)
44
alias(libs.plugins.depromeet.team5.hilt)
5+
alias(libs.plugins.google.services)
56
}
67

78
android {
@@ -16,8 +17,18 @@ android {
1617
}
1718

1819
buildTypes {
19-
release {
20+
debug {
21+
applicationIdSuffix = ".dev"
22+
isDebuggable = true
2023
isMinifyEnabled = false
24+
isShrinkResources = false
25+
}
26+
27+
release {
28+
isDebuggable = false
29+
isMinifyEnabled = true
30+
isShrinkResources = true
31+
2132
proguardFiles(
2233
getDefaultProguardFile("proguard-android-optimize.txt"),
2334
"proguard-rules.pro"
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
package com.depromeet.team5
2+
3+
class TestClass {
4+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
package com.depromeet.team5
2+
3+
class TestClass {
4+
}

build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ plugins {
88
alias(libs.plugins.kotlin.jvm) apply false
99
alias(libs.plugins.android.library) apply false
1010
alias(libs.plugins.kotlinx.serialization) apply false
11+
alias(libs.plugins.google.services) apply false
1112
}

gradle/libs.versions.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ hiltNavigationCompose = "1.2.0"
2727
runtimeAnnotation = "1.9.0"
2828
timber = "5.0.1"
2929
firebaseCrashlytics = "20.0.2"
30+
googleService = "4.4.3"
3031

3132

3233
[libraries]
@@ -126,6 +127,7 @@ kotlin-jvm = {id = "org.jetbrains.kotlin.jvm",version.ref = "kotlin" }
126127
hilt = { id = "com.google.dagger.hilt.android", version.ref = "hilt" }
127128
ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" }
128129
kotlinx-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlinxSerialization" }
130+
google-services = { id = "com.google.gms.google-services", version.ref = "googleService" }
129131

130132
# Custom Plugins
131133
depromeet-team5-application = { id = "com.depromeet.team5.application", version = "unspecified" }

0 commit comments

Comments
 (0)