-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
63 lines (52 loc) · 1.58 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
// Android SDK version
ext.androidMinSdkVersion = 16
ext.androidTargetSdkVersion = 30
ext.androidCompileSdkVersion = 30
// Kotlin
ext.kotlinVersion = '1.5.10'
ext.ankoVersion = '0.10.4'
// Android library
ext.androidGradlePlugin = '4.0.1'
ext.supportVersion = '28.0.0'
ext.lifecycleVersion = "2.2.0"
ext.roomVersion = "2.3.0"
// Networking
ext.retrofitVersion = '2.9.0'
ext.okHttpVersion = '4.7.2'
// Glide
ext.glideVersion = "4.12.0"
// Dagger
ext.dagger_version = "2.35.1"
// Hilt
ext.hilt_version = "2.35"
// Testing
ext.jUnitVersion = '4.13.2'
ext.mockitoVersion = '2.8.9'
ext.mockitoExtensionVersion = '1.5.0'
ext.espressoVersion = '2.2.2'
ext.testRunnerVersion = '1.0.1'
ext.debugDbVersion = '1.0.5'
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:${androidGradlePlugin}"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "org.jetbrains.kotlin:kotlin-android-extensions:$kotlinVersion"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}