Skip to content

Commit

Permalink
[feat]#232: 서버 드리븐 모듈 추가해요
Browse files Browse the repository at this point in the history
  • Loading branch information
flash159483 committed Feb 1, 2025
1 parent e41f177 commit 9bbd42e
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ dependencies {
implementation(project(":feature:message"))
implementation(project(":feature:entire"))
implementation(project(":feature:notification"))
implementation(project(":feature:server-driven"))

implementation(libs.splash.screen)
implementation(platform(libs.firebase.bom))
Expand Down
1 change: 1 addition & 0 deletions feature/server-driven/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
18 changes: 18 additions & 0 deletions feature/server-driven/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
plugins {
alias(libs.plugins.wespot.android.feature)
alias(libs.plugins.wespot.android.compose)
alias(libs.plugins.wespot.android.hilt)
}

android {
namespace = "com.bff.wespot.server.driven"
}

dependencies {
implementation(libs.bundles.orbit)
implementation(libs.junit)
implementation(libs.androidx.junit)
implementation(libs.timber)
implementation(libs.lottie)
implementation(libs.coil.compose)
}
4 changes: 4 additions & 0 deletions feature/server-driven/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

</manifest>
2 changes: 2 additions & 0 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ paging3 = "3.3.2"
splash-screen = "1.0.1"

module-graph = "2.7.1"
material = "1.10.0"

[libraries]
android-build = { module = "com.android.tools.build:gradle", version.ref = "gradle-plugin" }
Expand Down Expand Up @@ -133,6 +134,7 @@ paging3 = { group = "androidx.paging", name = "paging-compose", version.ref = "p
paging3-domain = { group = "androidx.paging", name = "paging-common", version.ref = "paging3"}

splash-screen = { group = "androidx.core", name = "core-splashscreen", version.ref = "splash-screen" }
material = { group = "com.google.android.material", name = "material", version.ref = "material" }

[bundles]
androidx-compose = [
Expand Down
1 change: 1 addition & 0 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,4 @@ include(":feature:entire")
include(":data-local")
include(":feature:notification")
include(":core:analytics")
include(":feature:server-driven")

0 comments on commit 9bbd42e

Please sign in to comment.