Skip to content

Commit 641da83

Browse files
committed
core and features modules moved to sub-folders
1 parent 36366a6 commit 641da83

File tree

96 files changed

+34
-34
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+34
-34
lines changed

app/build.gradle.kts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,15 @@ android {
5151

5252
dependencies {
5353
// core modules
54-
implementation(project(":core-designsystem"))
55-
implementation(project(":core-navigation"))
56-
implementation(project(":core-data"))
54+
implementation(project(":core:designsystem"))
55+
implementation(project(":core:navigation"))
56+
implementation(project(":core:data"))
5757

5858
// feature modules
59-
implementation(project(":feature-camera"))
60-
implementation(project(":feature-chats"))
61-
implementation(project(":feature-status"))
62-
implementation(project(":feature-calls"))
59+
implementation(project(":feature:camera"))
60+
implementation(project(":feature:chats"))
61+
implementation(project(":feature:status"))
62+
implementation(project(":feature:calls"))
6363

6464
// material
6565
implementation(libs.androidx.appcompat)

build-logic/convention/src/main/kotlin/AndroidFeatureConventionPlugin.kt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ class AndroidFeatureConventionPlugin : Plugin<Project> {
1515
val libs = extensions.getByType<VersionCatalogsExtension>().named("libs")
1616

1717
dependencies {
18-
add("implementation", project(":core-designsystem"))
19-
add("implementation", project(":core-navigation"))
20-
add("implementation", project(":core-uistate"))
21-
add("implementation", project(":core-data"))
18+
add("implementation", project(":core:designsystem"))
19+
add("implementation", project(":core:navigation"))
20+
add("implementation", project(":core:uistate"))
21+
add("implementation", project(":core:data"))
2222

2323
add("implementation", libs.findLibrary("kotlinx.coroutines.android").get())
2424
}
File renamed without changes.

core-data/build.gradle.kts renamed to core/data/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ plugins {
2020
}
2121

2222
dependencies {
23-
api(project(":core-model"))
24-
api(project(":core-network"))
25-
api(project(":core-database"))
23+
api(project(":core:model"))
24+
api(project(":core:network"))
25+
api(project(":core:database"))
2626
}
File renamed without changes.

0 commit comments

Comments
 (0)