File tree Expand file tree Collapse file tree 10 files changed +17
-15
lines changed Expand file tree Collapse file tree 10 files changed +17
-15
lines changed Original file line number Diff line number Diff line change @@ -156,8 +156,8 @@ kotlin {
156
156
}
157
157
158
158
dependencies {
159
- implementation(project( " : common: car" ) )
160
- implementation(project( " : shared" ) )
159
+ implementation(projects. common. car)
160
+ implementation(projects. shared)
161
161
162
162
implementation(libs.compose.ui)
163
163
implementation(libs.compose.ui.tooling)
Original file line number Diff line number Diff line change @@ -132,8 +132,8 @@ android {
132
132
133
133
dependencies {
134
134
135
- implementation(project( " : common: car" ) )
136
- implementation(project( " : shared" ) )
135
+ implementation(projects. common. car)
136
+ implementation(projects. shared)
137
137
138
138
implementation(libs.lifecycle.runtime.compose)
139
139
@@ -153,4 +153,4 @@ dependencies {
153
153
154
154
implementation(libs.koin.core)
155
155
implementation(libs.koin.android)
156
- }
156
+ }
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ dependencies {
18
18
implementation(libs.kotlinx.datetime)
19
19
implementation(libs.kotlinx.serialization)
20
20
implementation(libs.bare.graphQL)
21
- implementation(project( " : backend: datastore" ) )
21
+ implementation(projects. backend. datastore)
22
22
implementation(libs.okhttp)
23
23
implementation(libs.reflect)
24
24
implementation(libs.xoxo)
@@ -56,4 +56,4 @@ tasks.configureEach {
56
56
*/
57
57
enabled = false
58
58
}
59
- }
59
+ }
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ kotlin {
26
26
implementation(libs.bare.graphQL)
27
27
implementation(libs.kotlinx.serialization)
28
28
29
- implementation(project( " : backend: datastore" ) )
29
+ implementation(projects. backend. datastore)
30
30
}
31
31
}
32
32
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ android {
33
33
}
34
34
35
35
dependencies {
36
- implementation(project( " : shared" ) )
36
+ implementation(projects. shared)
37
37
38
38
implementation(libs.coil.compose)
39
39
@@ -42,4 +42,4 @@ dependencies {
42
42
implementation(libs.play.services.auth)
43
43
44
44
coreLibraryDesugaring(libs.desugar)
45
- }
45
+ }
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ kotlin {
24
24
implementation(libs.decompose.decompose)
25
25
implementation(libs.decompose.extensions.compose)
26
26
27
- implementation(project( " : shared" ) )
27
+ implementation(projects. shared)
28
28
}
29
29
}
30
30
}
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ kotlin {
19
19
binaries.executable()
20
20
21
21
tasks.named<ProcessResources >(compilations[" main" ].processResourcesTaskName) {
22
- from(project( " : shared" ) .file(" src/commonMain/composeResources" ))
22
+ from(projects. shared.dependencyProject .file(" src/commonMain/composeResources" ))
23
23
}
24
24
}
25
25
@@ -31,7 +31,7 @@ kotlin {
31
31
implementation(compose.foundation)
32
32
implementation(compose.material3)
33
33
implementation(compose.components.resources)
34
- implementation(project( " : shared" ) )
34
+ implementation(projects. shared)
35
35
}
36
36
}
37
37
}
Original file line number Diff line number Diff line change 1
1
@file:Suppress(" UnstableApiUsage" )
2
2
3
+ enableFeaturePreview(" TYPESAFE_PROJECT_ACCESSORS" )
4
+
3
5
pluginManagement {
4
6
listOf (repositories, dependencyResolutionManagement.repositories).forEach {
5
7
it.apply {
Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ kotlin {
129
129
dependsOn(mobileMain)
130
130
131
131
dependencies {
132
- api(project( " : proto" ) )
132
+ api(projects. proto)
133
133
api(libs.androidx.lifecycle.viewmodel.ktx)
134
134
implementation(libs.okhttp)
135
135
implementation(libs.okhttp.coroutines)
Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ dependencies {
149
149
}
150
150
151
151
dependencies {
152
- implementation(project( " : shared" ) )
152
+ implementation(projects. shared)
153
153
154
154
implementation(libs.coil.compose)
155
155
implementation(libs.coil.svg)
You can’t perform that action at this time.
0 commit comments