Skip to content

Commit 26ca88a

Browse files
committed
[BOOK-161] chore: feature:detail 모듈 추가
1 parent bcff70e commit 26ca88a

File tree

4 files changed

+24
-0
lines changed

4 files changed

+24
-0
lines changed

app/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ dependencies {
5454
projects.feature.search,
5555
projects.feature.settings,
5656
projects.feature.webview,
57+
projects.feature.detail,
5758

5859
libs.androidx.activity.compose,
5960
libs.androidx.startup,

feature/detail/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

feature/detail/build.gradle.kts

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
@file:Suppress("INLINE_FROM_HIGHER_PLATFORM")
2+
3+
plugins {
4+
alias(libs.plugins.booket.android.feature)
5+
alias(libs.plugins.booket.kotlin.library.serialization)
6+
alias(libs.plugins.kotlin.parcelize)
7+
}
8+
9+
android {
10+
namespace = "com.ninecraft.booket.feature.detail"
11+
}
12+
13+
ksp {
14+
arg("circuit.codegen.mode", "hilt")
15+
}
16+
17+
dependencies {
18+
implementations(
19+
libs.logger
20+
)
21+
}

settings.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,5 @@ include(
4242
":feature:search",
4343
":feature:settings",
4444
":feature:webview",
45+
":feature:detail"
4546
)

0 commit comments

Comments
 (0)