-
Notifications
You must be signed in to change notification settings - Fork 94
/
settings.gradle.kts
75 lines (74 loc) · 1.64 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { setUrl("https://jitpack.io") }
}
}
pluginManagement {
includeBuild("build-logic")
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
rootProject.name = "KAHelpers"
include(":dataStructuresAndAlgorithms")
include(":recyclerview")
include(":glide")
include(":moshi")
include(":gson")
include(":customviews")
include(":jodaDateTime")
include(":viewbinding")
include(":biometrics")
include(":reflection")
include(":rx")
include(":coroutines")
include(":retrofit")
include(":security")
include(":kotlinextensions")
include(":app")
include(":accessibility")
include(":animations")
include(":audio")
include(":activity")
include(":contextGetters")
include(":context")
include(":internetDetector")
include(":common")
include(":string")
include(":bytearray")
include(":file")
include(":resources")
include(":networking")
include(":http")
include(":view")
include(":viewpager2")
include(":dateTime")
include(":collections")
include(":root")
include(":fragment")
include(":enums")
include(":generators")
include(":math")
include(":locale")
include(":numbers")
include(":livedata")
include(":color")
include(":lifecycle")
include(":permissions")
include(":regex")
include(":photos")
include(":sharedpreferences")
include(":toaster")
include(":saf")
include(":intent")
include(":receivers")
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
include(":compose:core")
include(":compose:core-m3")
include(":compose:placeholder")
include(":compose:placeholder-m3")