-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
76 lines (72 loc) · 2.27 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
// Define versions in a single place
ext {
// Sdk and tools
compileSdkVersion = 29
minSdkVersion = 21
targetSdkVersion = 29
// Build dependencies
gradleVersion = '4.1.2'
kotlinVersion = '1.4.30'
// App dependencies
appCompatVersion = '1.3.0-beta01'
activityKtx = '1.2.1'
firebaseBomVersion = '26.3.0'
cardViewVersion = '1.0.0'
circularImageViewVersion = '3.1.0'
constraintLayoutVersion = '2.0.4'
coroutinesVersion = '1.3.9'
easyPermissions = "3.0.0"
firebaseCrashlyticsVersion = '17.3.0'
fragmentVersion = '1.3.1'
glideVersion = '4.11.0'
gsonVersion = '2.8.6'
imageCompressor = '3.0.0'
ktxVersion = '1.3.2'
lifecycleVersion = '2.3.0'
lifecycleProcessVersion = '2.3.0'
materialDesignVersion = '1.3.0'
multidexVersion = '2.0.1'
recyclerViewVersion = '1.2.0-beta02'
okHttpLoggingInterceptorVersion = '4.7.2'
retrofitVersion = '2.9.0'
roomVersion = '2.2.6'
rxAndroidVersion = '2.1.1'
rxJavaVersion = '2.2.19'
timber = '4.7.1'
vectorDrawableVersion = '1.1.0'
workRuntimeVersion = "2.5.0"
toolTipVersion = "1.1.5"
debugDBAndroid = '1.0.6'
androidSDP = '1.0.6'
androidSSP = '1.0.6'
kotlinRecycler = "1.2.1"
groupie_version = "2.9.0"
pagingKtxRuntime = "2.1.2"
daggerHiltVersion = "2.32-alpha"
hiltLifeCycleVersion = "1.0.0-alpha03"
}
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradleVersion"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlinVersion"
classpath "com.google.dagger:hilt-android-gradle-plugin:$daggerHiltVersion"
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}