-
Notifications
You must be signed in to change notification settings - Fork 74
/
settings.gradle.kts
56 lines (51 loc) · 1.47 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
pluginManagement {
includeBuild("build-logic")
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositories {
google()
mavenCentral()
maven(url = "https://jitpack.io")
maven(url = "https://sdk.uxcam.com/android/")
maven {
url = uri("http://maven.usehover.com/releases")
isAllowInsecureProtocol = true
}
maven {
url = uri("http://maven.usehover.com/snapshots")
isAllowInsecureProtocol = true
}
maven {
url = uri("https://pro.maven.usehover.com/snapshots")
credentials {
username = providers.gradleProperty("HoverUsername").orNull
password = providers.gradleProperty("HoverPassword").orNull
}
authentication { create<BasicAuthentication>("basic") }
content { includeGroup("com.hover") }
}
}
}
rootProject.name = "Stax"
include(":app")
include(":features")
include(":features:user-profile")
include(":features:transactions")
include(":hover.sdk")
include(":internal:analytics")
include(":internal:remoteconfig")
include(":internal:sync")
include(":internal:testing")
include(":internal:ui")
include(":internal:network")
include(":internal:database")
include(":internal:resources")
include(":internal:datastore")
include(":internal:model")
include(":internal:data")
include(":internal:core")