-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
47 lines (44 loc) 路 1.36 KB
/
Copy pathbuild.gradle
File metadata and controls
47 lines (44 loc) 路 1.36 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
dependencies {
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.3.5"
}
}
plugins {
id 'com.android.application' version '7.1.0' apply false
id 'com.android.library' version '7.1.0' apply false
id 'org.jetbrains.kotlin.android' version '1.5.30' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
kotlinVersion = '1.5.31'
coreKtxVersion = '1.7.0'
appCompatVersion = '1.4.1'
materialVersion = '1.5.0'
constraintLayoutVersion = '2.1.3'
legacySupportVersion = '1.0.0'
junitVersion = '4.13.2'
mockkVersion = '1.12.0'
coreTestingVersion = '2.1.0'
roomVersion = '2.4.1'
retrofitVersion = '2.9.0'
loggingInterceptorVersion = '4.9.0'
timberVersion = '5.0.1'
moshiVersion = '1.12.0'
converterMoshiVersion = '2.9.0'
moshiCodegenVersion = '1.12.0'
kotlinCoroutinesVersion = '1.6.0'
kotlinCoroutinesTestVersion = '1.6.0'
activityKtxVersion = '1.4.0'
fragmentKtxVersion = '1.4.1'
navigationFragmentVersion = '2.4.1'
navigationUiVersion = '2.4.1'
lifecycleVersion = '2.4.1'
daggerVersion = '2.40.5'
epoxyVersion = '4.6.3'
glideVersion = '4.13.0'
chuckerVersion = '3.5.2'
circleImageVersion = '3.1.0'
}