-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
54 lines (47 loc) · 1.38 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
//val kotlin_version: String by settings
pluginManagement {
repositories {
google()
gradlePluginPortal()
mavenCentral()
}
resolutionStrategy {
eachPlugin {
//hilt
if (requested.id.namespace == "dagger.hilt.android") {
useModule("com.google.dagger:hilt-android-gradle-plugin:${requested.version}")
}
}
}
}
dependencyResolutionManagement {
// repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven("https://www.jitpack.io")
}
}
//Guiding:https://proandroiddev.com/using-type-safe-project-dependencies-on-gradle-493ab7337aa
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
//snake case:some_module_api
rootProject.name = "jetpacks"
// Use kebab case formatting for all project names:
// A kebab case formatting is when all letters lowercase,
// words separated with a dash (‘-’) character (e.g.kebab-case-formatting)
include(":app")
include(":share")
include(":webview")
include(":javascript")
include(":native")
include(":vulkan")
include(":app-widgets")
include(":app-plugins")
include(":app-host")
include(":pseudo-android")
include(":android-rpc")
include(":view-binding")
include(":javascript-bridge-compiler")
include(":javascript-bridge")
include(":app:macrobenchmark")
include(":app:microbenchmark")