forked from Windscribe/Android-App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
74 lines (70 loc) · 1.79 KB
/
build.gradle
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
68
69
70
71
72
73
74
// 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 = 34
appCompiledSdk = 34
appBuildTool = "34.0.0"
appVersionCode = 1447
appVersionName = "3.79"
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.coroutines_version = '1.6.0'
ext.coroutinesCore = "1.6.4"
//Kotlin
ext.kotlin = "1.8.0"
ext.ktx_core = "1.9.0"
ext.desugarJdk = "2.0.3"
ext.kotlin_std_lib = "1.8.10"
//Feature
ext.retrofit = "2.9.0"
ext.fireBase = "23.1.2"
ext.butterknife = "10.2.3"
ext.glide = "4.11.0"
ext.epoxyVersion = "4.6.3"
ext.dagger = "2.34"
ext.room = '2.5.1'
ext.work_manager = "2.8.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:7.4.2'
classpath 'org.owasp:dependency-check-gradle:6.2.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin"
}
}
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
}