-
Notifications
You must be signed in to change notification settings - Fork 457
Expand file tree
/
Copy pathbuild.gradle
More file actions
64 lines (59 loc) · 2.24 KB
/
build.gradle
File metadata and controls
64 lines (59 loc) · 2.24 KB
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
60
61
62
63
64
/*
* Copyright (c) 2017 Proton AG
*
* This file is part of ProtonVPN.
*
* ProtonVPN is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* ProtonVPN is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with ProtonVPN. If not, see <https://www.gnu.org/licenses/>.
*/
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
alias(libs.plugins.android.application) apply false
alias(libs.plugins.android.compose.screenshot) apply false
alias(libs.plugins.android.library) apply false
alias(libs.plugins.android.test) apply false
alias(libs.plugins.androidx.baselineprofile) apply false
alias(libs.plugins.androidx.room) apply false
alias(libs.plugins.dagger.hilt) apply false
alias(libs.plugins.detekt) apply false
alias(libs.plugins.jaredsburrows.gradle.license) apply false
alias(libs.plugins.kotlin.android) apply false
alias(libs.plugins.kotlin.compose) apply false
alias(libs.plugins.kotlin.jvm) apply false
alias(libs.plugins.kotlin.parcelize) apply false
alias(libs.plugins.kotlin.serialization) apply false
alias(libs.plugins.ksp) apply false
alias(libs.plugins.owasp.dependencycheck) apply true
alias(libs.plugins.proton.core.env.config) apply false
alias(libs.plugins.sentry) apply false
alias(libs.plugins.triplet.play) apply false
}
project.ext {
minSdkVersionAmazon = 25 // Fire OS 6, see VPNAND-1914.
}
allprojects {
repositories {
if (System.getenv("MAVEN_CACHE_PKG_URL")) {
maven { url System.getenv("MAVEN_CACHE_PKG_URL") }
}
mavenCentral()
google()
maven { url "https://jitpack.io" }
flatDir {
dirs 'libs'
}
}
}
tasks.register("clean", Delete) {
delete rootProject.getLayout().getBuildDirectory()
}