Skip to content

Commit

Permalink
chore: 모듈 의존성 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
easyhz committed Aug 12, 2024
1 parent aed594a commit 8b723c3
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,11 @@ dependencies {
implementation(projects.core.network)
implementation(projects.core.model)

implementation(projects.data.auth)
implementation(projects.data.organization)

implementation(projects.domain.home)
implementation(projects.domain.sign)

implementation(projects.feature.announcement)
implementation(projects.feature.home)
Expand Down
26 changes: 26 additions & 0 deletions data/auth/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,14 +1,40 @@
import java.util.Properties

plugins {
alias(libs.plugins.noffice.android.library)
alias(libs.plugins.noffice.android.hilt)
alias(libs.plugins.noffice.android.application.test)
}

val localProperties = Properties()
localProperties.load(project.rootProject.file("local.properties").inputStream())

android {
namespace = "com.easyhz.noffice.data.auth"
buildTypes {
debug {
buildConfigField(
"String",
"GOOGLE_CLIENT_ID",
localProperties["google.client.id"].toString()
)
}
release {
// buildConfigField("String", "GOOGLE_CLIENT_ID", localProperties["google.client.id"].toString())
}
}
buildFeatures {
buildConfig = true
}
}

dependencies {
implementation(projects.core.common)
implementation(projects.core.network)
implementation(projects.core.model)

implementation(libs.googleid)
implementation(libs.gms.play.services.auth)
runtimeOnly(libs.androidx.credentials.play.services.auth)

}

0 comments on commit 8b723c3

Please sign in to comment.