-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
57 lines (55 loc) · 1.8 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
// Sdk and tools
compileSdkVersion = 31
minSdkVersion = 21
targetSdkVersion = 31
// App dependencies
gradleVersion = '7.0.3'
kotlinVersion = '1.5.31'
hiltVersion = '2.38.1'
appCompatVersion = '1.2.0'
constraintLayoutVersion = '2.0.4'
ktxVersion = '1.3.2'
materialVersion = '1.2.1'
roomVersion = '2.3.0-alpha04'
ktxActivity = '1.1.0'
lifecycleVersion = '2.2.0'
retrofitVersion = '2.9.0'
okHttpVersion = '4.9.0'
coroutineVersion = '1.4.2'
okhttpLoggingVersion = "4.7.2"
mockitoCoreVersion = "3.7.7"
mockitoInlineVersion = "3.2.4"
mockitoKotlin = "2.2.0"
mockWebserver = "4.7.2"
archCoreTest = "2.1.0"
coreTest = "1.4.0"
robolectricVersion = "4.7.1"
truthVersion = "1.1.3"
coroutineTestVersion = "1.5.2"
jUnitVersion = "1.1.3"
espressoCore = "3.4.0"
junitKtxVersion = "1.1.3"
swpRefreshLayout = "1.1.0"
glideVersion = "4.11.0"
photoView = "2.0.0"
pagingLibVersion = "3.0.0-alpha13"
}
repositories {
google()
mavenCentral()
maven { url "https://www.jitpack.io" }
}
dependencies {
classpath "com.android.tools.build:gradle:$gradleVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hiltVersion"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}