forked from ProtonVPN/android-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
36 lines (29 loc) · 962 Bytes
/
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
include(":detekt-custom-rules")
rootProject.name = "ProtonVPN"
plugins {
id("me.proton.core.gradle-plugins.include-core-build") version "1.3.0"
}
includeCoreBuild {
// By default, target :
// On CI: "https://$gitlab_host/proton/mobile/android/proton-libs.git".
// else: "https://github.com/ProtonMail/protoncore_android.git".
// To force using full Core sources from a specific branch.
// branch.set("fix/my_needed_fix")
// To force using full Core sources from a specific commit.
// commit.set("213e46d307195abbaa063dc03ca40e2cda9a5a6b")
}
include(":app")
include(":detekt-gitlab-output-plugin")
include(":observability:domain")
include(":observability:tools")
include(":openvpn")
include(":shared-test-code")
buildCache {
local {
if (System.getenv("CI") == "true") {
directory = file("build/gradle-build-cache")
}
removeUnusedEntriesAfterDays = 3
}
}
include(":release_tests")