-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
52 lines (50 loc) · 1.19 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
pluginManagement {
includeBuild("build-logic")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.4.0"
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven(url = "https://jitpack.io")
}
}
rootProject.name = "InstagramClone"
include(":app")
// Core
include(":core:core_data")
include(":core:core_domain")
include(":core:core_presentation")
include(":core:core_testing")
include(":core:core_android_testing")
// Home
include(":home:home_data")
include(":home:home_presentation")
// Auth
include(":auth:auth_data")
include(":auth:auth_domain")
include(":auth:auth_presentation")
// Camera
include(":camera")
// Permission
include(":permission")
// Profile
include(":profile:profile_data")
include(":profile:profile_domain")
include(":profile:profile_presentation")
// Reels
include(":reels:reels_presentation")
// Share
include(":share:share_data")
include(":share:share_domain")
include(":share:share_presentation")
// Search
include(":search:search_presentation")