-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
57 lines (47 loc) · 1.21 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
buildscript {
ext.gradle_version = '4.1.2'
ext.kotlin_version = '1.4.30'
ext.navigationVersion = '2.3.3'
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:$gradle_version"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigationVersion"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
compileSdkVersion = 30
minSdkVersion = 16
targetSdkVersion = 30
//Kotlin
coroutines = '1.4.1'
supportLibVersion = '1.2.0'
// AndroidX + Material
materialVersion = '1.3.0'
swipeRefreshLayoutVersion = '1.1.0'
recyclerViewVersion = '1.2.0-beta01'
constraintLayoutVersion = '2.0.4'
// Architecture components
coreVersion = '1.3.2'
lifecycleVersion = '2.3.0'
navigationVersion = '2.3.3'
roomVersion = '2.3.0-beta01'
pagingVersion = '3.0.0-beta01'
//Retrofit
retrofitVersion = '2.6.0'
okhttpLoggingInterceptorVersion = '3.4.2'
//Picasso
picassoVersion = '2.71828'
}