File tree Expand file tree Collapse file tree 6 files changed +16
-14
lines changed Expand file tree Collapse file tree 6 files changed +16
-14
lines changed Original file line number Diff line number Diff line change @@ -77,13 +77,13 @@ android {
77
77
78
78
dependencies {
79
79
// modules
80
- implementation(project( " :core-data " ) )
80
+ implementation(projects.coreData )
81
81
82
82
// modules for unit test
83
- testImplementation(project( " :core-network " ) )
84
- testImplementation(project( " :core-database " ) )
85
- testImplementation(project( " :core-test " ) )
86
- androidTestImplementation(project( " :core-test " ) )
83
+ testImplementation(projects.coreNetwork )
84
+ testImplementation(projects.coreDatabase )
85
+ testImplementation(projects.coreTest )
86
+ androidTestImplementation(projects.coreTest )
87
87
88
88
// androidx
89
89
implementation(libs.material)
Original file line number Diff line number Diff line change @@ -32,10 +32,10 @@ android {
32
32
}
33
33
34
34
dependencies {
35
- api(project( " :core-model " ) )
36
- implementation(project( " :core-network " ) )
37
- implementation(project( " :core-database " ) )
38
- testImplementation(project( " :core-test " ) )
35
+ api(projects.coreModel )
36
+ implementation(projects.coreNetwork )
37
+ implementation(projects.coreDatabase )
38
+ testImplementation(projects.coreTest )
39
39
40
40
// coroutines
41
41
implementation(libs.coroutines)
Original file line number Diff line number Diff line change @@ -43,8 +43,8 @@ android {
43
43
}
44
44
45
45
dependencies {
46
- implementation(project( " :core-model " ) )
47
- testImplementation(project( " :core-test " ) )
46
+ implementation(projects.coreModel )
47
+ testImplementation(projects.coreTest )
48
48
49
49
// coroutines
50
50
implementation(libs.coroutines)
Original file line number Diff line number Diff line change @@ -33,8 +33,8 @@ android {
33
33
}
34
34
35
35
dependencies {
36
- implementation(project( " :core-model " ) )
37
- testImplementation(project( " :core-test " ) )
36
+ implementation(projects.coreModel )
37
+ testImplementation(projects.coreTest )
38
38
39
39
// coroutines
40
40
implementation(libs.coroutines)
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ android {
31
31
}
32
32
33
33
dependencies {
34
- implementation(project( " :core-model " ) )
34
+ implementation(projects.coreModel )
35
35
implementation(libs.coroutines)
36
36
implementation(libs.coroutines.test)
37
37
implementation(libs.junit)
Original file line number Diff line number Diff line change 14
14
// See the License for the specific language governing permissions and
15
15
// limitations under the License.
16
16
17
+ enableFeaturePreview(" TYPESAFE_PROJECT_ACCESSORS" )
18
+
17
19
pluginManagement {
18
20
repositories {
19
21
google()
You can’t perform that action at this time.
0 commit comments