-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
89 lines (69 loc) · 2.05 KB
/
build.gradle
File metadata and controls
89 lines (69 loc) · 2.05 KB
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{
// Sdk and tools
compileSdkVersion = 30
targetSdkVersion = 30
buildToolsVersion = '30.0.2'
minSdkVersion = 23
versionCode = 100
versionName = '1.0.0'
//kotlin
kotlinVersion = '1.4.10'
ktxVersion = '1.3.2'
// App dependencies
appCompatVersion = '1.2.0'
constraintLayoutVersion = '2.0.4'
materialVersion = '1.3.0-alpha04'
viewPagerVersion = '1.1.0-alpha01'
fragmentVersion = '1.3.0-beta01'
navigationVersion = '2.3.1'
lifecycleVersion = '2.2.0'
coroutinesVersion = '1.3.9'
//net
gsonVersion = '2.8.6'
okhttpVersion = '4.9.0'
retrofitVersion = '2.9.0'
glideVersion = '4.11.0'
//di
daggerVersion = '2.29.1'
hiltVersion = '2.29.1-alpha'
hiltJetpackVersion = '1.0.0-alpha02'
//component
componentVersion = '1.8.3.2'
//database
roomVersion = '2.3.0-alpha03'
//paging
pagingVersion = '3.0.0-alpha09'
//work
workVersion = '2.4.0'
//Testing
junitVersion = '4.1.2'
testExtJunit = '1.1.2'
coreTestingVersion = '2.1.0'
espressoVersion = '3.3.0'
uiAutomatorVersion = '2.2.0'
}
repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.1'
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
}
}
allprojects {
repositories {
google()
jcenter()
maven { url 'https://jitpack.io' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}