-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsettings.gradle.kts
57 lines (52 loc) · 1.53 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
pluginManagement {
includeBuild("build-logic")
repositories {
google()
mavenCentral()
gradlePluginPortal()
maven { url = uri("https://www.jitpack.io") }
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven {
url = uri("https://jitpack.io")
}
maven {
url = uri("https://api.mapbox.com/downloads/v2/releases/maven")
authentication {
create<BasicAuthentication>("basic")
}
credentials {
username = "mapbox"
password = (extra["MAPBOX_DOWNLOAD_TOKEN"] ?: "") as String
}
}
}
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
include(":app")
include(":core:assets")
include(":core:data")
include(":core:database")
include(":core:domain")
include(":core:location")
include(":core:model")
include(":core:network")
include(":core:testing")
include(":core:preferences")
include(":core:ui")
include(":core:utils")
include(":core:work")
include(":feature:addgeopoint")
include(":feature:exploregeopoints")
include(":feature:firstlaunch")
rootProject.name = "Biophonie"
// integrate local soundwave dependency
// requires soundwave PATH to be defined in global gradle.properties extra SOUNDWAVE_DIR
// TODO: consider moving WaveFormPlayer into this project
include(":soundwave")
project(":soundwave").projectDir = File((extra["SOUNDWAVE_DIR"] ?: "") as String)