-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
47 lines (47 loc) · 1.07 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
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven {
setUrl("https://jitpack.io")
}
}
}
rootProject.name = "Samples"
include(":app")
include(":appshortcuts")
include(":navigation-component")
include(":viewpager2")
include(":koin")
include(":ktor")
include(":realm")
include(":firestore")
include(":lint")
include(":timber")
include(":leak")
include(":chuncker")
include(":unit_testing")
include(":benchmark")
include(":websocket")
include(":stripe")
include(":broadcast_receiver")
include(":build_variants")
include(":feature:home")
include(":feature:hotel")
include(":graphql")
include(":app_distribution")
include(":media_player")
include(":autofill")
include(":feature_delivery:base")
include(":feature_delivery:settings")
include(":feature_delivery:account")
include(":feature_delivery:notifications")
include(":activity_recognition")