-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathbuild.gradle
More file actions
67 lines (63 loc) · 1.6 KB
/
build.gradle
File metadata and controls
67 lines (63 loc) · 1.6 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
65
66
67
// Top-level build file where you can add configuration options common to all sub-projects/modules.
project.ext {
AppName = "Windscribe"
AppId = "com.windscribe.vpn"
appMinSdk = 21
appTargetSdk = 35
appCompiledSdk = 35
appBuildTool = "35.0.0"
appVersionCode = 2081
appVersionName = "3.98"
java = "17"
}
buildscript {
//Android
ext.leanBack = "1.0.0"
ext.material = "1.8.0"
ext.appCompat = "1.6.1"
ext.navigation = "2.5.3"
ext.archLifecycle = '2.6.1'
ext.coroutinesCore = "1.7.3"
//Feature
ext.retrofit = "2.9.0"
ext.fireBase = "23.1.2"
ext.glide = "4.11.0"
ext.epoxyVersion = "4.6.3"
ext.dagger = "2.51"
ext.room = '2.6.0'
ext.work_manager = "2.9.1"
//Test
ext.JUnit = "4.13.2"
ext.testCore = "1.5.0"
ext.coreVersion = "1.6.0-alpha01"
ext.extJUnitVersion = "1.2.0-alpha01"
ext.runnerVersion = "1.6.0-alpha01"
ext.espressoVersion = "3.5.1"
ext.robolectricVersion = "4.6.1"
ext.extTruthVersion = '1.3.0-rc01'
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.6.1'
classpath 'org.owasp:dependency-check-gradle:8.4.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.0.0"
}
}
allprojects {
apply from: "$rootDir/ktlint.gradle"
repositories {
google()
mavenCentral()
maven {
url "https://maven.google.com"
}
maven {
url "https://jitpack.io"
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}