-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
31 lines (27 loc) · 880 Bytes
/
settings.gradle.kts
File metadata and controls
31 lines (27 loc) · 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
pluginManagement {
resolutionStrategy {
eachPlugin {
if (requested.id.id == "dagger.hilt.android.plugin")
with("com.google.dagger:hilt-android-gradle-plugin") {
useModule("$this:${requested.version}")
}
if (requested.id.id == "androidx.navigation.safeargs")
with("androidx.navigation:navigation-safe-args-gradle-plugin") {
useModule("$this:${requested.version}")
}
}
}
repositories {
gradlePluginPortal()
google()
mavenCentral()
maven { url = uri("https://dl.bintray.com/kotlin/kotlin-eap") }
}
}
rootProject.name = "Study Journal"
include(":app")
include(":common:core")
include(":common:core-ui")
include(":features:main")
include(":features:timer")
include(":features:study-note")