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
|
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal() {
content {
// Exclude gRPC artifacts - they're only available in Maven Central
excludeGroup("io.grpc")
}
}
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
includeBuild("rust-android-gradle-plugin")
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
rootProject.name = "MullvadVPN"
include(
":app",
":service",
":tile"
)
include(
":lib:billing",
":lib:common",
":lib:common-test",
":lib:daemon-grpc",
":lib:endpoint",
":lib:map",
":lib:model",
":lib:payment",
":lib:resource",
":lib:repository",
":lib:talpid",
":lib:theme",
":lib:tv",
":lib:ui:designsystem",
":lib:ui:component",
":lib:ui:tag"
)
include(
":test",
":test:arch",
":test:common",
":test:e2e",
":test:mockapi",
":test:detekt",
":test:baselineprofile",
)
|