-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathsettings.gradle.kts
32 lines (29 loc) · 1018 Bytes
/
settings.gradle.kts
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
32
pluginManagement {
repositories {
google()
gradlePluginPortal()
mavenCentral()
}
resolutionStrategy {
eachPlugin {
// Some plugins are not on the Gradle Plugins portal and require trickery to resolve
// since Maven repos know nothing of plugin IDs.
when (requested.id.id) {
"dagger.hilt.android.plugin" -> {
useModule("com.google.dagger:hilt-android-gradle-plugin:${requested.version}")
}
"com.google.firebase.crashlytics" -> {
useModule("com.google.firebase.crashlytics:com.google.firebase.crashlytics.gradle.plugin:${requested.version}")
}
"shot" -> {
useModule("com.karumi:shot:${requested.version}")
}
}
}
}
}
rootProject.name = "Bundel"
include(":app")
include(":shared-ui")
include(":preferences")
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")