-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
89 lines (68 loc) · 1.91 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.9.22'
repositories {
google()
mavenCentral()
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath 'com.android.tools.build:gradle:8.1.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "de.jensklingenberg.ktorfit:ktorfit-gradle-plugin:2.1.0"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
ext {
// Sdk and tools
minSdkVersion = 26
targetSdkVersion = 34
compileSdkVersion = 34
buildToolsVersion = '28.0.3'
// multidex version
multidexVersion = '2.0.1'
// cardView dependency
cardviewVersion = '1.0.0'
//
lifecycleVersion = '2.2.0'
// appcompat version
appCompatVersion = '1.6.1'
// jUnit version
jUnitVersion = '4.13.2'
// androidJunit
androidJUnitVersion = '1.1.5'
// android espresso
androidEsspressoVersion = '3.5.1'
// App dependencies
supportLibraryVersion = '27.1.1'
// espresso version
espressoVersion = '2.2.2'
// retrofit version
retrofitVersionLatest = '2.9.0'
// okHttp3 version
okHttp3Version = '4.11.0'
// preference version
preference = '1.2.1'
// rxJava version
rxJavaVersion = '1.3.8'
// rxJavaAndroid version
rxAndroidVersion = '1.2.1'
// fineract version
fineractClientVersion = '2.0.3'
// truth version
truthVersion = '1.1.3'
}
allprojects {
repositories {
google()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}