-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
51 lines (49 loc) · 1.38 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
buildscript {
ext {
compile_sdk_version = 30
target_sdk_version = 30
build_tools_version = '30.0.3'
min_sdk_version = 17
gradle_version = "4.2.2"
kotlin_version = "1.5.10"
ktx_version = "1.5.0"
room_version = "2.3.0"
appcompat_version = "1.3.0"
material_google_version = "1.3.0"
recycler_view_version = '1.2.1'
card_view_version = "1.0.0"
constraint_layout_version = "2.0.4"
retrofit_version = "2.1.0"
gson_version = "2.8.6"
logging_interceptor_version = "3.4.1"
gson_convertor_version = "2.1.0"
glide_version = "4.12.0"
swipebackhelper_version = "3.1.2"
viewpump_version = "2.0.3"
calligraphy_version = "3.1.1"
swiperefreshlayout_version = "1.1.0"
junit_version = "4.13.2"
junit_test_version = "1.1.2"
espresso_version = "3.3.0"
viewpager_version = "1.0.0"
flexbox_version = "2.0.1"
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradle_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
mavenCentral()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}