-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
72 lines (55 loc) · 1.55 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlinVersion = '1.5.31'
ext.hiltPluginVersion = '2.38.1'
ext.navVersion = "2.3.5"
repositories {
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.2'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "com.google.dagger:hilt-android-gradle-plugin:$hiltPluginVersion"
// Safe Args
classpath"androidx.navigation:navigation-safe-args-gradle-plugin:$navVersion"
}
}
ext {
coreKtxVersion = '1.6.0'
appCompatVersion = '1.3.1'
// UI
materialVersion = '1.4.0'
constraintlayoutVersion = '2.1.1'
swiperefreshlayoutVersion = '1.1.0'
// LiveData
lifecycleVersion = "2.4.0-alpha03"
// Test helper for live data
archVersion = "2.1.0"
// Hilt
hiltVersion = '2.38.1'
// Navigation
navVersion = "2.3.5"
// Room
roomVersion = "2.3.0"
room_pagination_version = "2.4.0-alpha04"
// Retrofit
retrofitVersion = '2.9.0'
okhttpLoggingVersion = '5.0.0-alpha.2'
// Gson
gsonVersion = '2.8.8'
// Picasso
picassoVersion = "2.8"
// Lottie
lottieVersion = "4.1.0"
// Paging
pagingVersion = "3.0.1"
pagingComposeVersion = "1.0.0-alpha12"
// Testing library
JunitVersion = '4.13.2'
androidxJunitVersion = '1.1.3'
espressoVersion = '3.4.0'
}
task clean(type: Delete) {
delete rootProject.buildDir
}