-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
39 lines (36 loc) · 1.02 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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
mavenCentral()
}
}
plugins {
id 'com.android.application' version '7.1.1' apply false
id 'com.android.library' version '7.1.1' apply false
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
}
ext {
//dependencies version
kotlinVersion = '1.6.10'
coreVersion = '1.7.0'
appCompatVersion = '1.4.1'
jetpackVersion = '2.4.1'
materialVersion = '1.5.0'
constraintLayoutVersion = '2.1.3'
retrofitVersion = '2.9.0'
junitVersion = '4.13.2'
junitExtVersion = '1.1.3'
espressoVersion = '3.4.0'
okhttp3Version = '4.9.0'
circleImageVersion = '3.1.0'
coilVersion = '1.4.0'
roomRuntimeVersion = '2.4.2'
roomVersion = '2.4.0-rc01'
dataStoreVersion = '1.0.0'
androidTestVersion = '1.4.0'
idleResourceVersion = '3.4.0'
coroutineVersion = '1.5.2'
}
task clean(type: Delete) {
delete rootProject.buildDir
}